/** Shopify CDN: Minification failed

Line 212:10 Expected "]" to go with "["
Line 212:11 Expected identifier but found whitespace
Line 212:12 Unexpected "\"number\""

**/
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./Inter.ttf");
}

section:first-child>.container{
  padding-block-start: clamp(4.3125rem, 3.7183rem + 2.6047vw, 6.0625rem);
}

.text-color{
  color: var(--text-color);
}
.heading-color{
  color: var(--heading-color);
}
.l-heading-color{
  color: var(--l-heading-color);
}
.highlight-color{
  color: var(--highlight-color);
}
.border-color{
  border-color: var(--border-color);
}

:root {
  --page-width: 67.5rem;
  --anim-time: 200ms;
  --step--2: clamp(0.6944rem, 0.8175rem + -0.1367vw, 0.7901rem);
  --step--1: clamp(0.8333rem, 0.9048rem + -0.0794vw, 0.8889rem);
  --step-0: clamp(1rem, 1rem + 0vw, 1rem);
  --step-1: clamp(1.125rem, 1.1036rem + 0.1071vw, 1.2rem);
  --step-2: clamp(1.2656rem, 1.2158rem + 0.2491vw, 1.44rem);
  --step-3: clamp(1.4238rem, 1.3369rem + 0.4345vw, 1.728rem);
  --step-4: clamp(1.6018rem, 1.467rem + 0.674vw, 2.0736rem);
  --step-5: clamp(1.802rem, 1.606rem + 0.9804vw, 2.4883rem);
  --step-6: clamp(2.0273rem, 1.7534rem + 1.3696vw, 2.986rem);
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  letter-spacing: -0.03em;
  font-family: "Inter";
  color: var(--text-color);
}

a{
  text-decoration: none;
}
img{
  max-width: 100%;
  display: block;
}
button{
  cursor: pointer;
}
button>*{
  pointer-events: none;
} 
strong{
  font-weight: 700;
}
svg{
  color: inherit;
}
button:has(svg:only-child){
  line-height: 0px;
}
section:not(section:first-child){
  margin-block-start: clamp(3rem, 2.7143rem + 1.4286vw, 4rem);
}
body{
  overflow-x: hidden !important;
}
h1,h2,h3,h4,h5,h6{
  text-wrap: pretty;
}

.container{
  background-color: var(--background-color);
  overflow-x: clip;
  position: relative;
  display: grid;
  width: 100%;
  --pad: clamp(
    0px,
    calc((100% - var(--page-width) - 2rem)/2),
    calc((var(--max-width) - var(--page-width) - 2rem)/2)
  );
  --max-width: 90rem;
  --content: min(calc(100% - 2rem),var(--page-width));
  --fw: 1fr;
  grid-template-columns: 
    [fw-start]var(--fw)
    [space-start]1rem
    [pad-start]var(--pad)
    [content-start] var(--content,min(calc(100% - 2rem),67.5rem)) 
    [content-end] var(--pad)
    [pad-end]1rem
    [space-end] var(--fw)
    [fw-end]
  ;
}
.container>*{
  grid-column: content;
  /* overflow-x: hidden; */
}
.container>.container{
  grid-column: 1/-1;
}
.container>.full-pad{
  grid-column: pad;
}
.container>.full-pad.no-space{
  grid-column: space;
}
.container>.left-offset{
  grid-column: 2/-1;
}
.container>.full-w{
  grid-column: 1/-1;
}
.container>div:nth-child(n + 2){
  margin-block-start: 2.5rem;
}

.step--2{
  font-size: var(--step--2);
  letter-spacing: -0.05em;
}
.step--1{
  font-size: var(--step--1);
}
.step-0{
  font-size: var(--step-0);
}
.step-1{
  font-size: var(--step-1);
}
.step-2{
  font-size: var(--step-2);
}
.step-3{
  font-size: var(--step-3);
}
.step-4{
  font-size: var(--step-4);
}
.step-5{
  font-size: var(--step-5);
}
.step-6{
  font-size: var(--step-6);
}

*:has(>.bg-image){
  position: relative;
  overflow: clip;
}
*:has(>.bg-image)>*:not(.bg-image){
  position: relative;
  z-index: 1;
}
div.bg-image{
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  width: 100%;
  color: var(--text-color);
  fill: var(--text-color);
  img,svg{
    height: 100%;
    width: 100%;
    object-fit: cover;
  };
}

.main-footer{
  margin-block-start: clamp(6rem, 5.4783rem + 2.6087vw, 7.5rem);
}
.reset-list{
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reset-list.row-list{
  flex-direction: row;
}
.clear-background{
  background: transparent;
}

.compare_at_price,
.compare-at-price{
  text-decoration: line-through;
}
input[type: "number"]{
  -webkit-appearance: none;
}