/** Shopify CDN: Minification failed

Line 219:18 Unexpected ")"

**/
/* ASPECT RATIO */

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {
  height: auto;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }

  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }

  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

/* WEB COMPONENTS */

quantity-input {
  display: block;
}

/* BASE */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;

  min-height: 100vh;
  min-height: -webkit-fill-available;

  height: -webkit-fill-available;

  scroll-behavior: smooth;
  font-size: var(--font-body-size);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
 
a {
  text-decoration: none;
}

address {
  font-style: normal;
}

ul,
ol,
li {
  list-style-type: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* STYLEGUIDE */

body {
  color: var(--color-main);
  background-color: var(--color-white);

  font-family: var(--font-body-family);
  font-size: var(--font-body-size);
  font-style: normal;
  letter-spacing: var(--font-body-letter);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line);

}

main {
  background-color: var(--color-white);

  scroll-behavior: smooth;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--color-main);
  display: inline-block;
}

a:hover,
a:focus {
  opacity: 1;
}

a:focus-visible {
  outline: 1px solid var(--color-red);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.font-head-light em,
.font-head-light i {
  font-family: var(--font-heading-light-italic);
  font-weight: 300;
}

.font-head-reg em,
.font-head-reg i {
  font-family: var(--font-heading-italic);
  font-weight: 400;
}

.font-head-med em,
.font-head-med i {
  font-family: var(--font-heading-medium-italic);
  font-weight: 500;
}

strong,
b {
    font-family: var(--font-body-medium);
    font-weight: 500;
  
    font-style: normal;
    letter-spacing: var(--font-body-letter);
    line-height: var(--font-body-line);
  
}

h1,
.h1 {
  font-family: var(--font-heading-family);
  font-size: 3rem;
  letter-spacing: var(--font-heading-letter);
  line-height: var(--font-heading-line);
  font-style: normal;
  font-weight: var(--font-heading-weight);

  text-wrap: balance;
}

h2,
.h2 {
  font-family: var(--font-body-family);
  font-size: 1rem;

  letter-spacing: -0.01rem;
  line-height: 110%;
  font-style: normal;
  font-weight: 400;

  text-wrap: pretty; 
}

h3,
.h3 {
  font-size: 1rem;
  font-family: var(--font-body-family);
  letter-spacing: 0.0175rem;
  font-style: normal;
  font-weight: 400;
}

h4,
.h4 {
  font-size: 1rem;
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
}


  p a, .rte p a, .rte a {
      text-decoration: none;
      border-bottom: 1px solid var(--color-main);
      display: inline;
      transition: border 180ms ease-in-out, color 180ms ease-in-out;
    }



.rte p:last-child(),
.rte p:last-of-type {
  margin-bottom: 0;
}


/* p a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: transparent;

  transform: translateY(-1px);
  transition: background-color 180ms ease-in-out, transform 180ms ease-in-out;
}

p a:hover::after,
p a:focus::after,
p a:focus-visible::after {
  transform: translateY(-1px);
  background-color: var(--color-main);
} */


hr,.hr {
  height: 1px;
  background: var(--color-grey);
}

label {
  font-size: var(--font-body-size);
}

select {
  width: 100%;
  padding: 4px 12px;

  color: var(--color-main);
  letter-spacing: inherit;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: left;
  appearance: auto;
  background-color: var(--color-background-main);
  cursor: default;
  margin: 0em;
  border: none;
  appearance: none;
}

button,
input[type="submit"] {
  padding: 0;
  color: var(--color-main);
  letter-spacing: inherit;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: left;
  appearance: auto;
  background-color: transparent;
  cursor: pointer;
  margin: 0em;
  border: none;
  appearance: none;
}

input[type="checkbox"] {
  border-radius: 0;
  width: 1rem;
  background: transparent;
  appearance: none;
  border: none;
  height: 1rem;
  padding: 0.25rem;
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border-radius: 0;
  border: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-main);

  background: var(--color-white);
  appearance: none;
  padding: 0.25rem 0.5rem;
  cursor: text;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:active,
input[type="email"]:active,
input[type="password"]:active,
input[type="tel"]:active {
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid var(--color-main);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="password"]:focus-visible,
input[type="tel"]:focus-visible {
  outline: none;
  border-bottom: 1px solid var(--color-main);
  /* outline: 1px solid var(--color-main); */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder {
  color: var(--color-dark-grey);
  font-size: 0.875rem;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -text-align: left;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

input[type="radio"] + label {
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  padding: .25rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-white);
  color: var(--color-main);

  border-radius: .25rem;
  border: 1px solid var(--color-main);


}

input[type="radio"]:checked + label,
input[type="radio"]:focus + label,
input[type="radio"]:hover + label {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-main);
}

fieldset {
  display: block;
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
}

textarea {
  resize: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
}

table {
  width: 100%;
}

table th {
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-body-size));
  font-variant: var(--font-heading-variant);

  letter-spacing: 0.1em;
  line-height: 1;
  font-style: normal;
  font-weight: 400;

  padding: 0;
  text-align: left;
}

table tr {
  text-align: left;
}

/* Utility Classes */


.rte-width {
  display: inline-block;
}

.placeholder-fill {
  background-color: var(--color-red);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.ovh {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.absolute-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-center-y {
  top: 50%;
  transform: translateY(-50%);
}

.absolute-center-x {
  left: 50%;
  transform: translateX(-50%);
}

.left-0 {
  left: 0;
}

.left-center {
  left: 50%;
  transform: translateX(-50%);
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.fixed {
  position: fixed;
}

.fixed-center {
  top: 0;
}

.sticky {
  position: sticky;
}

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

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

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

.text-i {
  font-style: italic;
}

.font-light {
  font-family: var(--font-body-family);
  font-weight: 300;
}

.font-reg {
  font-family: var(--font-body-family);
  font-weight: 400;
}

.font-med {
  font-family: var(--font-body-medium);
  font-weight: 500;
}

.font-head-light {
  font-family: var(--font-heading-light);
  font-weight: 300;
}

.font-head-light em,
.font-head-light-italic {
  font-family: var(--font-heading-light-italic);
  font-weight: 300;
}


.font-head-reg {
  font-family: var(--font-heading-family);
  font-weight: 400;
}

.font-head-reg em,
.font-head-reg-italic {
  font-family: var(--font-heading-italic);
  font-weight: 400;
}

.font-head-med {
  font-family: var(--font-heading-medium);
  font-weight: 500;
}

.font-head-med em,
.font-head-med-italic {
  font-family: var(--font-heading-medium-italic);
  font-weight: 500;
}

.font-sub {
  font-size: 0.875rem;
  letter-spacing: .01em;
  leading-trim: both;
  text-edge: cap;
}

.font-body-l {
  font-size: var(--font-body-size-l);
  line-height: 120%;
}

.width-50 {
  width: 50%;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0.5rem, 1fr));
  grid-gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0.5rem, 1fr));
  grid-gap: 1rem;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0.5rem, 1fr));
  grid-gap: 1rem; 
}


.grid-6 {
  grid-template-columns: repeat(6, minmax(0.5rem, 1fr));
  grid-gap: 1rem;
}

.grid-8 {
  grid-template-columns: repeat(8, minmax(0.5rem, 1fr));
  grid-gap: 2rem;
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.row-span-1 {
  grid-row: span 1;
}

.row-span-2 {
  grid-row: span 2;
}

.flex {
  display: flex;
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

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

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

.flex-sb {
  justify-content: space-between;
}

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

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

.gap-1 {
  gap: 1rem;
}

.gap-075 {
  gap: .75rem;
}

.gap-05 {
  gap: .5rem;
}


.color-grey {
  color: var(--color-grey);
}

.color-white {
  color: var(--color-white);
}

.color-red {
  color: var(--color-red);
}

.color-main {
  color: var(--color-main);
}

.color-dark-grey {
  color: var(--color-dark-grey);
}

.bg-grey {
  background-color: var(--color-grey);
}

.bg-white {
  background-color: var(--color-white);
}

.border-main {
  border: 1px solid var(--color-main);
}

.border-grey {
  border: 1px solid var(--color-grey);
}

.border-white {
  border: 1px solid var(--color-white);
}

.border-red {
  border: 1px solid var(--color-red);
}

.bg-blur {
  background: var(--color-blur, rgba(255, 255, 252, 0.05));
  backdrop-filter: blur(1.5rem);
}

.rad-s {
  border-radius: var(--radius-small);
}

.rad-m {
  border-radius: var(--radius-medium);
}

.rad-l {
  border-radius: var(--radius-large);
}

.rad-full {
  border-radius: 100%;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}


.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.ratio-57 {
  aspect-ratio: 5/7;
}

@supports not(aspect-ratio: 5/7) {
  .ratio-57 {
    padding-top: 140%;
  }

  .ratio-57 > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .ratio-57 > img {
    width: 100%;
    height: auto;
  }

  .ratio-57 > video {
    width: 100%;
    height: auto;
  }
}

.ratio-1 {
  aspect-ratio: 1/1;
}

@supports not (aspect-ratio: 1/1) {
  .ratio-1 {
    padding-top: 100%;
  }

  .ratio-1 > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .ratio-1 > img {
    width: 100%;
    height: auto;
  }

  .ratio-1 > video {
    width: 100%;
    height: auto;
  }
}

.ratio-46 {
  aspect-ratio: 4/6;
}

@supports not (aspect-ratio: 4/6) {
  .ratio-46 {
    padding-top: 150%;
  }

  .ratio-46 > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .ratio-46 > img {
    width: 100%;
    height: auto;
  }

  .ratio-46 > video {
    width: 100%;
    height: auto;
  }
}

.ratio-64 {
  aspect-ratio: 6/4;
}

@supports not (aspect-ratio: 6/4) {
  .ratio-64 {
    padding-top: 66.6666666667%;
  }

  .ratio-64 > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .ratio-64 > img {
    width: 100%;
    height: auto;
  }

  .ratio-64 > video {
    width: 100%;
    height: auto;
  }
}

.ratio-169 {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .ratio-169 {
    padding-top: 56.25%;
  }

  .ratio-169 > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .ratio-169 > img {
    width: 100%;
    height: auto;
  }

  .ratio-169 > video {
    width: 100%;
    height: auto;
  }
}


.obj-cover {
  object-fit: cover;
}

.obj-fill {
  object-fit: fill;
}

.opacity-0 {
  opacity: 0;
}

.opacity-025 {
  opacity: 0.25;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-075 {
  opacity: 0.75;
}

.opacity-1 {
  opacity: 1;
}

.page-title {
  padding: 3rem;
}

/* no-js */

.no-js {
  display: none;
}

/* Layout */
.wrapper {
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  padding: 1rem;
}

.tb {
  padding: 3rem 0;
}

.p-t {
  padding-top: 3rem;
}

.p-b {
  padding-bottom: 3rem;
}

.tb-m {
  margin: 3rem 0;
}

.wrapper.tb {
  padding: 3rem 2rem;
}

.wrapper.p-t{
  padding: 3rem 3rem 0 3rem;
}

.wrapper.p-b{
  padding: 0 3rem 3rem 3rem;
}


.pad-025 {
  padding: 0.25rem;
}

.pad-05 {
  padding: 0.5rem;
}

.pad-075 {
  padding: 0.75rem;
}

.pad-1 {
  padding: 1rem;
}

.pad-2 {
  padding: 2rem;
}

.pad-3 {
  padding: 3rem;
}

.pointer-none {
  pointer-events: none;
}

.mt-head {
  margin-top: var(--header-height);
}

.m-auto {
  margin: 0 auto;
}

.measure,
.width {
  display: block;
  max-width: var(--measure);
}

.measure-heading {
  max-width: var(--measure-head);
}

.z-base {
 z-index: var(--z-base);
}
.z-filter {
  z-index: var(--z-filter)
}
.z-header {
  z-index: var(--z-header);
}
.z-modal {
  z-index: var(--z-modal);
}



/* --Buttons */

.btn {
  display: flex;

  padding: .75rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;

  cursor: pointer;

  box-shadow: var(--shadow-big);
  border: 1px solid var(--color-red);
  color: var(--color-white);
  background: var(--color-red);
  transition: background-color 240ms ease-in-out 0s, color 240ms ease-in-out 0s;
}

.btn:hover {
  color: var(--color-red);
  background: var(--color-white);
  
  font-family: var(--font-body-medium);
  font-weight: 500;
}


.btn--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.label-btn {
  color: var(--color-main);
  background: var(--color-white);
}

.bis-btn.btn {
  padding: 1rem;
}

.btn--video svg {
  min-width: 6rem;
  opacity: .8;
}

.btn--video:hover svg {
  opacity: 1;
}

.btn--video:hover path {
  fill: var(--color-white);
}


.cta,
button.cta, input[type=submit].cta {
  display: flex;
  padding: .75rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;

  transition: background-color 180ms ease-in-out 0s, color 180ms ease-in-out 0s;
}

button.cta:hover, input[type=submit].cta:hover {
  color: var(--color-white);
  background: var(--color-red);
}

.cta-primary,
button.cta-primary, input[type=submit].cta-primary {
  box-shadow: var(--shadow-btn);
  background: var(--color-main);
  color: var(--color-white);
}

.cta-secondary,
button.cta-secondary, input[type=submit].cta-secondary  {
  border: 1px solid;
  background: var(--color-white);
  color: var(--color-main);
  box-shadow: var(--shadow-btn);
}

.cta-tertiary,
button.cta-tertiary, input[type=submit].cta-tertiary {
  color: inherit;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
  border-radius: 0;
}




.capsule {
  display: flex;
  padding: .5rem 1rem;
  align-items: flex-start;
  gap: 10px;

  border-radius: 2rem;
  background: var(--color-white);
}

.capsule-s {
  display: flex;
  padding: 0.25rem 0.5rem;
  align-items: flex-start;
  border-radius: 2rem;
}

input[type="submit"] {
  cursor: pointer;
}

/* HTML Classes */

html.mini-cart-open body,
html.menu-active body {
  overflow: hidden;
  max-height: 100vh;
}


/* Annuouncement Bar */

html.show-banner body {
  margin-top: var(--ann-height);
}

html.show-banner header {
  top: var(--ann-height);
}

html.show-banner .mt-head {
  margin-top: calc(var(--header-height) + var(--ann-height));
}


/* Mini Components */

/* Icons */

.icon {
  max-width: 1.5rem;
}

.header__item:hover .icon,
.header__item:focus-visible .icon {
  pointer-events: none;
}

.header__item:hover .icon path,
.header__item:focus-visible .icon path {
  fill: var(--color-red);
}

.header__item:focus .icon path {
  transition: fill 120ms ease-in-out;
}

.header__item .icon {
  transition: transform 120ms ease-in-out;
}

.header__item:hover .icon,
.header__item:focus .icon {
  transform: scale(1.05);
}

.js-cart-icon .icon-cart--filled {
  display: none;
}

.js-cart-icon .icon-cart--empty {
  display: block;
}

.js-cart-icon.has-items .icon-cart--filled {
  display: block;
}

.js-cart-icon.has-items .icon-cart--empty {
  display: none;
}

/* linklists */

.linklist {
  padding-right: 1.5rem;
  /* container: linklist / inline-size; */
  max-width: var(--measure);

  display: flex;
  flex-direction: column;
}

.linklist__title {
  font-size: var(--font-body-size);
  font-family: var(--font-body-medium);
  font-weight: 500;
  margin-bottom: 0.5rem;

  color: var(--color-red);
}

.linklist li {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: center;
  padding: 0.25rem 0.25rem 0.25rem 0;
  
}


.linklist li:first-child {
  padding-top: 0;
}

.linklist__link { 
  transition: border-bottom 320ms ease-in-out;
  border-bottom: 1px solid transparent;
}

.linklist__link:hover, 
.linklist__link:focus-visible
 {
  border-bottom: 1px solid var(--color-main);}

/* Labels */
.product-labels {
  z-index: 1;

  display: flex;
  flex-direction: row;
  gap: 0.5rem;

  top: 0;
  left: 1rem;

  margin: .5rem;
}

.format-container .product-labels {
  top: 2rem;
  left: auto;
  right: 2rem;
  padding: 0.5rem;
}

.product-card .product-labels {
  left: 0;
  margin: 0;
  flex-wrap: wrap;

  top: auto;
  bottom: 0;
}

.format-container .product-labels.show-mobile {
  top: 0;
    left: 0;
    right: auto;
    padding: 0.5rem;
    margin: 0;

}

/* rte */

.rte ul li, .metafield-rich_text_field ul li {
  list-style: disc;
  margin-left: 1rem;
}

.rte h1,.rte h2,.rte h3, .rte h4, .rte h5 {
  font-family: var(--font-body-family);
  font-size: var(--font-body-size);
  font-style: normal;
  letter-spacing: var(--font-body-letter);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line);
}

.rte strong, .rte b {
  font-family: var(--font-body-medium);
  font-weight: 500;

  font-style: normal;
  letter-spacing: var(--font-body-letter);
  line-height: var(--font-body-line);
}

/* Section Overall */

.shopify-section:has(.parent-border-top) {
  border-top: 1px solid var(--color-grey);
}

/* Radio */

.color-option {
  border-radius: 100%;
  padding: 1px;
  border: 1px solid transparent;

  display: flex;
  justify-content: center;

  align-items: center;
}

.color-option:has(.radio.selected) {
  border: 1px solid var(--color-main);
}

.color-option:hover {
  border: 1px solid var(--color-dark-grey);
}

.radio {
  display: block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;

  border: 1px solid transparent;
  border-radius: 100%;
}

.radio--bg {
  background-color: var(--color-grey);
  background-size: 1rem;
  background-repeat: repeat;
  background-position: center;
}


/* Search Form */

.form-search__terms {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  -webkit-column-gap: 0.25rem;

  transition: opacity 240ms ease-in-out;
}

input[type="text"].form-search__terms__input {
  padding: 0.25rem 2rem 0.25rem 0.5rem;
  border-radius: var(--radius-small);
  border: none;
}

.form-search__terms__arrow,
.form-search__terms__icon {
  width: 1.5rem;
  padding: 0.25rem;
  height: 1.5rem;
  margin-right: 0.25rem;
}

.form-search-hidden .form-search__terms {
  width: 0;
  opacity: 0;
}

.form-search__button-close {
  display: none;
}

.form-search__button {
  width: 1.5rem;
}

/* Add to Cart Form */

.add-to-cart-button {
  width: 100%;
  margin: .5rem 0;
  padding: 1rem;
  border: 1px solid var(--color-red);

  transition: background-color 240ms ease-in-out 0s, color 240ms ease-in-out 0s;
}

.add-to-cart-button:hover {
  background-color: transparent;
  color: var(--color-red);

  font-family: var(--font-body-medium);
  font-weight: 500;
}

.add-to-cart-button[disabled],
.add-to-cart-button.disabled--button {
  background-color: var(--color-grey);
  color: var(--color-dark-grey);
  border-color: var(--color-grey);
  box-shadow: none;
  cursor: not-allowed;
}

.add-to-cart-button .confirmation-message,
.add-to-cart-button .disabled-text {
  display: none;
}

.add-to-cart-button.confirmation .confirmation-message {
  display: block;
}
.add-to-cart-button.confirmation .call-to-action,
.add-to-cart-button.confirmation.disabled--button .disabled-text {
  display: none;
}

.add-to-cart-button .call-to-action {
  display: block;  
}
 
.add-to-cart-button.disabled--button .disabled-text {
  display: block;
}

.add-to-cart-button.disabled--button .disabled-text.in-cart-text {
  display: none;
}

.product-main__info .add-to-cart-form .add-to-cart-button.disabled--button  .call-to-action,
.product-main__info .add-to-cart-form .add-to-cart-button.confirmation .call-to-action {
  display: none;  
}

.add-to-cart-button .call-to-action .fixed-price{
  display: none;
}

html.search-active .form-search-hidden .form-search__terms {
  width: 100%;
  opacity: 1;
}

html.search-active .form-search-hidden .form-search__button-open {
  display: none;
}

html.search-active .form-search-hidden .form-search__button-close {
  display: block;
}

/* Price */

.price > * {
  display: inline-block;
  vertical-align: top;
}

.price.price--unavailable {
  visibility: hidden;
}

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

.price .price-item {
  margin: 0 1rem 0 0;
}

.price__regular .price-item--regular {
  margin-right: 0;
}

.price:not(.price--show-badge) .price-item--last:last-of-type {
  margin: 0;
}

.price--large {
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.13rem;
}

.price--sold-out .price__availability,
.price__regular {
  display: block;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale {
  display: inline-block;
}

.price--on-sale .price__sale {
  display: initial;
  flex-direction: row;
  flex-wrap: wrap;
}

.price--center {
  display: initial;
  justify-content: center;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: var(--color-dark-grey);
}

.unit-price {
  display: block;
}


/* Show and Hide */


.show-mobile {
  display: none;
}

.show-desktop {
  display: inherit;
}

/* Components */

/* Page Main */

.template-page main{
  margin-bottom: var(--header-height);
}

/* Carousels -  INline */

.inline-carousel .flickity-page-dots {
  bottom: 0;
  left: 0;

  width: auto;
  padding: .5rem;
}

.inline-carousel .flickity-page-dots .dot {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin: 0 0.25rem;
  background: transparent;
  border-radius: 50%;
  opacity: .25;
  cursor: pointer;
  border: 1px solid var(--color-white);
  opacity: 1;
}

.inline-carousel .flickity-page-dots .dot.is-selected {
  background: var(--color-white);
  border-color: var(--color-white); 
}

@media screen and (min-width: 1800px) {
  .wrapper {
    padding: 0 3rem;
  }

}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 3.75rem;

    --font-body-size-l: 1rem;
  }

  h1,
  .h1 {
    font-size: 2.5rem;
    font-size: calc(2rem + .5vmax);
    text-wrap: balance;
  }

  @supports not (text-wrap: balance) {
    h1,
    .h1 {
      font-size: 2.5rem;
      overflow-wrap: break-word;
    }
  }
  
.font-body-l {
  font-size: var(--font-body-size);
}
  .show-mobile {
    display: block;
  }

  .show-desktop {
    display: none;
  }

  .wrapper {
    padding: 0 1rem;
  }

  .tb {
    padding: 1.5rem 0;
  }

  .tb-m {
    margin: 1.5rem 0;
  }

  .wrapper.tb {
    padding: 1.5rem 1rem;
  }
  
  .p-t {
    padding-top: 1.5rem;
  }
  
  .p-b {
    padding-bottom: 1.5rem;
  }
    
  .wrapper.p-t{
    padding: 1.5rem 1rem 0 1rem;
  }
  
  .wrapper.p-b{
    padding: 0 1rem 1.5rem 1rem;
  }
  

  .container {
    padding: 1rem;
  }

  .cta,
  button.cta, input[type=submit].cta {
    padding: .5em .75em;
  }


.btn:hover {
  color: var(--color-white);
  background: var(--color-red);
  
  font-family: var(--font-body-family);
  font-weight: 400;
}

.btn.add-to-cart-button.disabled--button {  
  background-color: var(--color-grey);
  color: var(--color-dark-grey);
  border-color: var(--color-grey);
  box-shadow: none;
  cursor: not-allowed;
}


  .cta-tertiary, button.cta-tertiary, input[type=submit].cta-tertiary {
    padding: 0 0 2px 0;
  }
  
  .grid-2 {
    grid-gap: 1rem
  }

  .show-mobile.form-search__button {
    display: flex;
    width: 2rem;
  }

  .page-title {
    padding: 2.5rem 0;
    margin: 0 auto;
  }

  .page-title h1 {
    margin: 1.5rem auto;
  }

  .measure {
    max-width: 100%;
  }

  .capsule {
    font-size: .875rem;
    letter-spacing: .01em;
    padding: 0.25rem 0.75rem;
  }

  .linklist {
    padding-right: 0;
    max-width: 100%;
  }

  .linklist--title {
    margin-bottom: 1rem;
  }

  .linklist li:first-child {
    padding-top: 0;
  }

  .add-to-cart-button {
    padding: .75rem;
  }

  .format-container .product-labels.show-mobile {
 display: flex;
      
  }

  .radio {
    width: .75rem;
    height: .75rem;
  }

  .product-meta-swatches .radio {
    width: .9rem;
    height: .9rem;
  }

  
  .product-card .product-labels {
    padding: 0.5rem;

    bottom: 0;
    top: auto;
  }

  .product-card .product-labels .product-labels__item {
    font-size: .75rem;
    opacity: .75;
  }

  .product-card .product-labels  .product-labels__item {
    display: none;
  }
  .product-card .product-labels  .product-labels__item:first-child {
    display: flex;
  }
  

}
