/** Shopify CDN: Minification failed

Line 278:2 Expected "}" to go with "{"

**/
.ld-restock-trigger {
  width: 100%;
  min-height: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.5rem;
  border: 0.1rem solid #111;
  border-radius: 0.8rem;
  background: #111;
  color: #fff;
  font: inherit;
  font-family: var(--font-heading-family, inherit);
  font-size: 1.35rem;
  font-weight: 390;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ld-restock-trigger:hover {
  background: transparent;
  color: #111;
}

.ld-restock-trigger:active {
  transform: translateY(1px);
}

.ld-restock-trigger:focus-visible {
  outline: 0.2rem solid #111;
  outline-offset: 0.3rem;
}

.ld-restock-trigger[hidden] {
  display: none !important;
}

.ld-restock-trigger--card {
  min-height: 4.2rem;
  margin-top: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.05rem;
}

.ld-restock-modal {
  width: min(calc(100% - 2.4rem), 52rem);
  max-width: 52rem;
  max-height: min(88vh, 76rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1.2rem;
  background: rgb(var(--color-background, 255 255 255));
  color: rgb(var(--color-foreground, 18 18 18));
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.ld-restock-modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}

.ld-restock-modal__inner {
  position: relative;
  padding: clamp(2rem, 5vw, 3.2rem);
}

.ld-restock-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.ld-restock-modal__close svg {
  width: 2.2rem;
  height: 2.2rem;
}

.ld-restock-modal__header {
  padding-right: 3.5rem;
}

.ld-restock-modal__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}

.ld-restock-modal h2 {
  margin: 0;
  font-family: var(--font-heading-family, inherit);
  font-size: clamp(2.2rem, 6vw, 3.1rem);
  line-height: 1.05;
}

.ld-restock-modal__product {
  margin: 0.8rem 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.ld-restock-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 2rem;
}

.ld-restock-modal__field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.ld-restock-modal__field input {
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.2rem;
  border: 0.1rem solid rgba(var(--color-foreground, 18 18 18), 0.38);
  border-radius: 0.7rem;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 1.5rem;
}

.ld-restock-modal__field input:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.2rem;
}

.ld-restock-modal__consent {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  font-size: 1.18rem;
  line-height: 1.42;
  cursor: pointer;
}

.ld-restock-modal__consent input {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0.1rem 0 0;
  accent-color: #111;
}

.ld-restock-modal__privacy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  opacity: 0.7;
}

.ld-restock-modal__privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.ld-restock-modal__submit {
  width: 100%;
  min-height: 5rem;
  padding: 1.1rem 1.5rem;
  border: 0.1rem solid #111;
  border-radius: 0.8rem;
  background: #111;
  color: #fff;
  font: inherit;
  font-family: var(--font-heading-family, inherit);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  cursor: pointer;
}

.ld-restock-modal__errors,
.ld-restock-modal__success {
  padding: 1.2rem;
  border-radius: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.ld-restock-modal__errors {
  background: rgba(180, 0, 0, 0.08);
  color: #8a0000;
}

.ld-restock-modal__success {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(0, 120, 68, 0.09);
  color: #075f39;
}

@media (max-width: 749px) {
  .ld-restock-modal {
    width: calc(100% - 1.6rem);
    max-height: calc(100dvh - 1.6rem);
    border-radius: 1rem;
  }

  .ld-restock-modal__inner {
    padding: 2rem 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ld-restock-trigger {
    transition: none;
  }
}

/* Klaviyo is the only active back-in-stock UI. */
[data-restock-trigger],
[data-restock-modal] {
  display: none !important;
}

.ld-klaviyo-bis-card {
  width: 100%;
  min-height: 4.4rem;
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0.7rem;
  border: 0.1rem solid #e85c5c;
  border-radius: 0.8rem;
  background: #e85c5c;
  color: #fff;
  font-family: var(--font-heading-family, inherit);
  font-size: 1.15rem;
  font-weight: 390;
  line-height: 1.15;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.ld-klaviyo-bis-card:hover {
  background: #d94f4f;
  border-color: #d94f4f;
  color: #fff;
}

.ld-klaviyo-bis-card[hidden] {
  