/** Shopify CDN: Minification failed

Line 366:0 Unexpected "}"

**/
/* ===========================
   FTB RESTOCK MODAL
=========================== */

.ftb-restock-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.ftb-restock-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.ftb-restock-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.25s ease;
}

.ftb-restock-modal.active .ftb-restock-modal__backdrop {
  opacity: 1;
}

.ftb-restock-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 570px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  transform: translate(-50%, calc(-50% + 20px));
opacity: 0;
transition:
  transform 0.25s ease,
  opacity 0.25s ease;
  background: #ffffff;
  border-radius: 20px;
  padding: 46px 38px 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}
.ftb-restock-modal.active .ftb-restock-modal__panel {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.ftb-restock-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.ftb-restock-modal__eyebrow {
  margin: 0 0 16px;
  color: #777777;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ftb-restock-modal__title {
  margin: 0 0 22px;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ftb-restock-modal__size-pill {
  display: inline-flex;
  min-width: 68px;
  height: 44px;
  margin: 0 0 24px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #000000;
  border-radius: 999px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ftb-restock-modal__intro {
  margin: 0 0 10px;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.ftb-restock-modal__body {
  margin: 0 0 32px;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 1.65;
}

.ftb-restock-modal__field {
  margin-bottom: 20px;
}

.ftb-restock-modal__field label {
  display: block;
  margin-bottom: 9px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.ftb-restock-modal__field label span {
  color: #777777;
  font-weight: 400;
}

.ftb-restock-modal__field input {
  box-sizing: border-box;
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border: 1px solid #d8d8d8;
  border-radius: 13px;
  background: #ffffff;
  color: #000000;
  font-family: inherit;
  font-size: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ftb-restock-modal__field input::placeholder {
  color: #8b8b8b;
}

.ftb-restock-modal__field input:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 0 1px #000000;
}

.ftb-restock-modal__consent {
  position: relative;
  display: flex;
  margin: 24px 0;
  align-items: center;
  gap: 12px;
  color: #111111;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.ftb-restock-modal__consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ftb-restock-modal__checkmark {
  position: relative;
  display: inline-flex;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #bdbdbd;
  border-radius: 6px;
  background: #ffffff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.ftb-restock-modal__checkmark::after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  margin-top: -2px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ftb-restock-modal__consent input:checked
  + .ftb-restock-modal__checkmark {
  border-color: #000000;
  background: #000000;
}

.ftb-restock-modal__consent input:checked
  + .ftb-restock-modal__checkmark::after {
  display: block;
}

.ftb-restock-modal__consent input:focus-visible
  + .ftb-restock-modal__checkmark {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.ftb-restock-modal__consent-text {
  display: block;
}

.ftb-restock-modal__submit,
.ftb-restock-modal__continue {
  width: 100%;
  min-height: 58px;
  padding: 16px 20px;
  border: 1px solid #000000;
  border-radius: 12px;
  background: #000000;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  cursor: pointer;
  transition:
  background 0.2s ease,
  color 0.2s ease,
  transform 0.2s ease,
  box-shadow 0.2s ease;
}

.ftb-restock-modal__submit:hover,
.ftb-restock-modal__continue:hover {
  background: #242424;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.ftb-restock-modal__submit:active,
.ftb-restock-modal__continue:active {
  transform: scale(0.99);
}

.ftb-restock-modal__fine-print {
  margin: 20px 0 0;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.ftb-restock-modal__success {
  padding: 34px 0 6px;
  text-align: center;
}

.ftb-restock-modal__success h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ftb-restock-modal__success p {
  margin: 0 0 10px;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.ftb-restock-modal__continue {
  margin-top: 28px;
}

@media (max-width: 640px) {

  .ftb-restock-modal__panel {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: 92vh;
    padding: 38px 22px 28px;
    border-radius: 22px 22px 0 0;
    transform: translateY(20px);
  }

  .ftb-restock-modal.active .ftb-restock-modal__panel {
    transform: translateY(0);
  }

}

  .ftb-restock-modal__close {
    top: 14px;
    right: 16px;
  }

  .ftb-restock-modal__title {
    margin-bottom: 18px;
    padding-right: 32px;
    font-size: 30px;
  }

  .ftb-restock-modal__size-pill {
    height: 42px;
    margin-bottom: 20px;
  }

  .ftb-restock-modal__intro {
    font-size: 18px;
  }

  .ftb-restock-modal__body {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .ftb-restock-modal__field input {
    height: 56px;
  }

  .ftb-restock-modal__submit,
  .ftb-restock-modal__continue {
    min-height: 56px;
  }
}
.ftb-restock-modal__consent {
  align-items: flex-start;
}

.ftb-restock-modal__checkmark {
  margin-top: 1px;
}

.ftb-restock-modal__consent-text {
  padding-top: 1px;
}