:root{
  --black:#111111;
  --white:#ffffff;
  --purple:#5b2d82;
  --muted:#77727b;
  --line:#e8e5e9;
  --soft:#f8f7f9;
}


@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #f7f5f8;
  color: #171717;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}

/* Everything else */
p,
span,
li,
a,
button,
input,
textarea,
select {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}



*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

/* =========================================
   HIDE NATIVE SCROLLBAR
   ========================================= */

html{
  scrollbar-width:none;
  -ms-overflow-style:none;
}

html::-webkit-scrollbar{
  display:none;
  width:0;
  height:0;
}

/* =========================================
   REMIFY CUSTOM SCROLL PROGRESS
   ========================================= */

.scroll-progress{
  position:fixed;
  top:0;
  right:0;
  width:6px;
  height:100vh;
  background:rgba(41,0,82,.07);
  pointer-events:none;
  z-index:99999;
}

.scroll-progress-fill{
  width:100%;
  height:100%;
  background:linear-gradient(
    180deg,
    #6d32a8 0%,
    #5b2d82 55%,
    #17002e 100%
  );
  transform:scaleY(0);
  transform-origin:top;
  will-change:transform;
  box-shadow:
    0 0 6px rgba(41,0,82,.45),
    0 0 14px rgba(41,0,82,.18);
  border-radius:0 0 4px 4px;
}

/* =========================================
   REMIFY CUSTOM CURSOR
   ========================================= */

.cursor-trail{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:100000;
  display:block;
}

@media(hover:hover) and (pointer:fine){

  *{
    cursor:none!important;
  }

  .cursor-spark{
    position:fixed;
    top:0;
    left:0;
    width:16px;
    height:16px;
    pointer-events:none;
    z-index:100001;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:
      transform .2s cubic-bezier(.22,1,.36,1),
      filter .2s ease;
  }

  .cursor-spark::before,
  .cursor-spark::after,
  .cursor-spark span::before,
  .cursor-spark span::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    background:var(--purple,#5b2d82);
    transform-origin:center;
    border-radius:999px;
    box-shadow:0 0 5px rgba(41,0,82,.35);
  }

  .cursor-spark::before{
    width:2px;
    height:16px;
    transform:translate(-50%,-50%);
  }

  .cursor-spark::after{
    width:16px;
    height:2px;
    transform:translate(-50%,-50%);
  }

  .cursor-spark span::before{
    width:1.5px;
    height:12px;
    transform:
      translate(-50%,-50%)
      rotate(45deg);
  }

  .cursor-spark span::after{
    width:1.5px;
    height:12px;
    transform:
      translate(-50%,-50%)
      rotate(-45deg);
  }

  .cursor-spark.cursor-spark--active{
    transform:
      translate(-50%,-50%)
      scale(1.45);
    filter:
      drop-shadow(0 0 5px rgba(41,0,82,.35))
      drop-shadow(0 0 14px rgba(92,45,145,.35));
  }

  .cursor-spark.cursor-spark--click{
    transform:
      translate(-50%,-50%)
      scale(.72);
  }
}

/* =========================================
   TOUCH DEVICES
   ========================================= */

@media(hover:none),(pointer:coarse){

  .cursor-trail,
  .cursor-spark{
    display:none;
  }

  .scroll-progress{
    width:4px;
  }
}

body{
  background:var(--white);
  color:var(--black);
  font-family: "Satoshi", sans-serif;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font:inherit;
}

button{
  border:0;
  cursor:pointer;
}

.checkout-navbar{
  position:relative;
  width:100%;
  height:78px;
  background:rgba(255,255,255,.9);
  border-bottom:1px solid rgba(17,17,17,.08);
  z-index:100;
}

.checkout-navbar-inner{
  position:relative;
  width:min(1440px,100%);
  height:100%;
  margin:auto;
  padding:0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.checkout-back{
  width:120px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  transition:color .3s ease;
}

.checkout-back-arrow{
  font-size:18px;
  line-height:1;
  transition:transform .3s ease;
}

.checkout-back:hover{
  color:var(--purple);
}

.checkout-back:hover .checkout-back-arrow{
  transform:translateX(-4px);
}

.checkout-logo{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.checkout-logo img{
  width:108px;
  height:auto;
  display:block;
}

.checkout-menu-toggle{
  width:42px;
  height:42px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  background:transparent;
}

.checkout-menu-toggle span{
  display:block;
  height:1.5px;
  background:var(--black);
  transition:width .3s ease,transform .3s ease;
}

.checkout-menu-toggle span:first-child{
  width:22px;
}

.checkout-menu-toggle span:last-child{
  width:15px;
}

.checkout-menu-toggle:hover span:last-child{
  width:22px;
}

.checkout-menu {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100dvh;

  padding: 40px clamp(24px, 6vw, 90px);

  background: rgba(8, 8, 8, 0.72);

  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .45s ease,
    visibility .45s ease;
}

.checkout-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-menu-inner {
  width: min(620px, 100%);
  min-height: 100%;

  margin-left: 0;

  padding: 28px 0;

  display: flex;
  flex-direction: column;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;

  color: #fff;

  transform: translateY(-18px);
  transition:
    transform .5s cubic-bezier(.16,1,.3,1);
}

.checkout-menu.is-open .checkout-menu-inner {
  transform: translateY(0);
}

.checkout-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-menu-logo img {
  width: 88px;
  display: block;
}

.checkout-menu-close {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,.10);
  color: #fff;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;

  position: relative;
}

.checkout-menu-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.checkout-menu-logo img{
  width:88px;
  display:block;
}

.checkout-menu-close{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background:rgba(17,17,17,.05);
  border-radius:50%;
  position:relative;
}

.checkout-menu-close span{
  position:absolute;
  width:18px;
  height:1.5px;
  background:var(--black);
}

.checkout-menu-close span:first-child{
  transform:rotate(45deg);
}

.checkout-menu-close span:last-child{
  transform:rotate(-45deg);
}

.checkout-menu-line{
  width:100%;
  height:1px;
  margin:28px 0 12px;
  background:rgba(17,17,17,.1);
}

.checkout-menu-links{
  display:flex;
  flex-direction:column;
}

.checkout-menu-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:23px 0;
  border-bottom:1px solid rgba(17,17,17,.08);
  font-family: "Satoshi", sans-serif;
  font-size:clamp(28px,4vw,42px);
  transition:color .3s ease,padding-left .3s ease;
}

.checkout-menu-links a:hover{
  color:var(--purple);
  padding-left:8px;
}

.checkout-menu-links a span:last-child{
  font-family: "Satoshi", sans-serif;
  font-size:18px;
}

.checkout-menu-footer{
  margin-top:auto;
  padding-top:30px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#f3f2f4;
}

.checkout-page{
  min-height:calc(100vh - 78px);
  padding:70px 34px 100px;
}

.checkout-container{
  width:min(1240px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.72fr);
  gap:100px;
  align-items:start;
}

.checkout-heading{
  margin-bottom:48px;
}

.checkout-eyebrow{
  display:block;
  margin-bottom:12px;
  color:var(--purple);
  font-size:9px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.checkout-heading h1{
  max-width:650px;
  font-family: "Satoshi", sans-serif;
  font-size:clamp(42px,5vw,70px);
  font-weight:400;
  line-height:.98;
  letter-spacing:-.035em;
}

.checkout-heading p{
  max-width:480px;
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

.checkout-form-group{
  padding:0 0 36px;
}

.checkout-section-heading{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:26px;
}

.checkout-section-heading>span{
  color:var(--purple);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}

.checkout-section-heading h2{
  font-size:15px;
  font-weight:700;
  letter-spacing:-.01em;
}

.checkout-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 18px;
}

.checkout-field{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.checkout-field--full{
  grid-column:1/-1;
}

.checkout-field label{
  font-size:10px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.checkout-field label span{
  color:#999;
  font-size:9px;
  font-weight:500;
  text-transform:none;
}

.checkout-field input{
  width:100%;
  height:54px;
  padding:0 16px;
  border:1px solid #ddd9df;
  border-radius:2px;
  outline:0;
  background:#fff;
  color:var(--black);
  font-size:13px;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.checkout-field input::placeholder{
  color:#aaa5ad;
}

.checkout-field input:focus{
  border-color:var(--purple);
  box-shadow:0 0 0 3px rgba(91,45,130,.07);
}

.checkout-field.has-error input{
  border-color:#a63d3d;
}

.field-error{
  display:none;
  color:#a63d3d;
  font-size:9px;
}

.checkout-field.has-error .field-error{
  display:block;
}

.checkout-form-divider{
  width:100%;
  height:1px;
  margin-bottom:36px;
  background:var(--line);
}

.checkout-shipping-notice{
  margin:4px 0 26px;
  padding:18px 20px;
  display:flex;
  gap:15px;
  align-items:flex-start;
  background:#faf9fb;
  border:1px solid #eeeaf0;
}

.checkout-shipping-icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--purple);
  color:white;
  font-size:11px;
}

.checkout-shipping-notice strong{
  display:block;
  margin-bottom:5px;
  font-size:11px;
  font-weight:700;
}

.checkout-shipping-notice p{
  color:var(--muted);
  font-size:10px;
  line-height:1.7;
}

.checkout-shipping-notice a{
  color:var(--purple);
  font-weight:700;
}

.checkout-shipping-notice a span{
  display:inline-block;
  margin-left:3px;
}

.checkout-payment-button{
  width:100%;
  min-height:62px;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:var(--black);
  color:white;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  transition:background .3s ease,transform .3s ease;
}

.checkout-payment-button:hover{
  background:var(--purple);
  transform:translateY(-2px);
}

.checkout-payment-arrow{
  font-size:20px;
  font-weight:400;
  transition:transform .3s ease;
}

.checkout-payment-button:hover .checkout-payment-arrow{
  transform:translate(3px,-3px);
}

.checkout-secure-note{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:7px;
  color:#99949b;
  font-size:9px;
}

.secure-dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--purple);
}

.checkout-summary-section{
  position:sticky;
  top:108px;
}

.checkout-summary{
  padding:28px;
  background:#faf9fb;
  border:1px solid #ebe8ed;
}

.summary-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}

.summary-heading .checkout-eyebrow{
  margin-bottom:6px;
}

.summary-heading h2{
  font-family: "Satoshi", sans-serif;
  font-size:27px;
  font-weight:400;
  line-height:1;
}

.summary-item-count{
  color:#8c878f;
  font-size:9px;
  font-weight:600;
  white-space:nowrap;
}

.summary-product{
  display:flex;
  gap:18px;
}

.summary-product-image{
  width:100px;
  height:120px;
  flex:0 0 100px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f1eef3;
}

.summary-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.summary-product-info{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.summary-product-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.summary-product-brand{
  display:block;
  margin-bottom:5px;
  color:var(--purple);
  font-size:7px;
  font-weight:800;
  letter-spacing:.16em;
}

.summary-product-info h3{
  max-width:170px;
  font-family: "Satoshi", sans-serif;
  font-size:22px;
  font-weight:400;
  line-height:1.05;
}

.summary-product-top>strong{
  font-size:11px;
  white-space:nowrap;
}

.summary-product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.summary-product-size{
  color:#88838b;
  font-size:9px;
}

.summary-quantity{
  display:flex;
  align-items:center;
  border:1px solid #ded9e0;
  background:#fff;
}

.summary-quantity button{
  width:28px;
  height:27px;
  background:transparent;
  color:var(--black);
  font-size:14px;
}

.summary-quantity span{
  min-width:28px;
  text-align:center;
  font-size:10px;
  font-weight:700;
}

.summary-line{
  width:100%;
  height:1px;
  margin:26px 0;
  background:#e4e0e6;
}

.summary-breakdown{
  display:flex;
  flex-direction:column;
  gap:13px;
}

.summary-breakdown>div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.summary-breakdown span{
  color:#817c84;
  font-size:10px;
}

.summary-breakdown strong{
  font-size:10px;
  font-weight:600;
  text-align:right;
}

.summary-total{
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #ded9e0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.summary-total span{
  font-family: "Satoshi", sans-serif;
  font-size:22px;
}

.summary-total strong{
  color:var(--purple);
  font-size:17px;
}

.summary-note{
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #e4e0e6;
  display:flex;
  gap:10px;
}

.summary-note>span{
  color:var(--purple);
  font-size:10px;
}

.summary-note p{
  color:#8b858d;
  font-size:9px;
  line-height:1.7;
}

.checkout-mobile-summary{
  display:none;
}

.checkout-error-state{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.checkout-error-state h1{
  font-family: "Satoshi", sans-serif;
  font-size:48px;
  font-weight:400;
}

.checkout-error-state p{
  margin:15px auto 25px;
  color:var(--muted);
  font-size:12px;
}

.checkout-error-state a{
  display:inline-flex;
  padding:14px 22px;
  background:var(--black);
  color:#fff;
  font-size:11px;
  font-weight:700;
}

@media(max-width:900px){

  .checkout-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .checkout-form-section{
    order:2;
  }

  .checkout-summary-section{
    order:1;
    position:static;
  }

  .checkout-mobile-summary{
    display:none;
  }
}

@media(max-width:700px){

  .checkout-navbar{
    height:68px;
  }

  .checkout-navbar-inner{
    padding:0 20px;
  }

  .checkout-back{
    width:auto;
  }

  .checkout-back span:last-child{
    display:none;
  }

  .checkout-back-arrow{
    font-size:22px;
  }

  .checkout-logo img{
    width:94px;
  }

  .checkout-menu{
    padding:12px;
  }

  .checkout-menu-inner{
    min-height:calc(100vh - 24px);
    padding:22px;
    border-radius:20px;
  }

  .checkout-menu-links a{
    padding:20px 0;
    font-size:30px;
  }

  .checkout-menu-footer{
    flex-direction:column;
    gap:8px;
  }

  .checkout-page{
    padding:42px 20px 70px;
  }

  .checkout-container{
    display:flex;
    flex-direction:column;
    gap:42px;
  }

  .checkout-summary-section{
    order:1;
    display:block;
    position:static;
    width:100%;
  }

  .checkout-form-section{
    order:2;
  }

  .checkout-heading{
    margin-bottom:36px;
  }

  .checkout-heading h1{
    font-size:46px;
  }

  .checkout-heading p{
    margin-top:15px;
    font-size:11px;
  }

  .checkout-form-group{
    padding-bottom:30px;
  }

  .checkout-fields{
    grid-template-columns:1fr;
    gap:19px;
  }

  .checkout-field--full{
    grid-column:auto;
  }

  .checkout-field input{
    height:52px;
  }

  .checkout-shipping-notice{
    padding:16px;
  }

  .summary-heading h2{
    font-size:25px;
  }
}

@media(max-width:420px){
  .checkout-page{
    padding-left:16px;
    padding-right:16px;
  }

  .checkout-navbar-inner{
    padding:0 16px;
  }

  .checkout-heading h1{
    font-size:41px;
  }

  .checkout-menu-inner{
    padding:20px;
  }

  .checkout-menu-links a{
    font-size:27px;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important;
  }
}

/* =========================================
   CHECKOUT STATUS
   ========================================= */

.checkout-status{
  position:fixed;
  inset:0;
  z-index:200000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(20,8,28,.28);
  backdrop-filter:blur(18px) saturate(130%);
  -webkit-backdrop-filter:blur(18px) saturate(130%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.checkout-status.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.checkout-status-card{
  position:relative;
  width:min(100%,520px);
  padding:52px 46px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(91,45,130,.12);
  border-radius:24px;
  box-shadow:
    0 30px 90px rgba(41,0,82,.18);
  text-align:center;
  transform:
    translateY(18px)
    scale(.97);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1);
}

.checkout-status.is-visible .checkout-status-card{
  transform:
    translateY(0)
    scale(1);
}

.checkout-status-close{
  position:absolute;
  top:18px;
  right:20px;
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#555;
  font-size:25px;
  cursor:pointer;
}

.checkout-status-icon{
  width:58px;
  height:58px;
  margin:0 auto 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f2eaf6;
  color:#5b2d82;
  font-size:24px;
  font-weight:700;
}

.checkout-status-card h2{
  margin:12px 0 12px;
  font-family: "Satoshi", sans-serif;
  font-size:clamp(30px,5vw,42px);
  font-weight:400;
  line-height:1.05;
  color:#111;
}

.checkout-status-card p{
  max-width:410px;
  margin:0 auto;
  font-family: "Satoshi", sans-serif;
  font-size:14px;
  line-height:1.75;
  color:#666;
}

.checkout-status-reference{
  margin-top:22px;
  font-family: "Satoshi", sans-serif;
  font-size:11px;
  letter-spacing:.04em;
  color:#777;
}

.checkout-status-action{
  display:none;
  margin:28px auto 0;
  min-height:48px;
  padding:0 26px;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  background:#5b2d82;
  color:#fff;
  font-family: "Satoshi", sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:600px){

  .checkout-status{
    padding:16px;
  }

  .checkout-status-card{
    padding:46px 24px 32px;
    border-radius:20px;
  }

  .checkout-status-card h2{
    font-size:32px;
  }

  .checkout-status-card p{
    font-size:13px;
  }

}