/** Shopify CDN: Minification failed

Line 252:16 Expected ":"

**/
cart-items .title-wrapper-with-link {
  margin-top: 0;
}

/* ==========================================================================
   SHARED CART ITEM STYLES
   Typography / pricing / generic item visuals only
   ========================================================================== */

.cart-item__image-container {
  display: inline-flex;
  align-items: flex-start;
}

.cart-item__image-container:after {
  content: none;
}

.cart-item__image {
  height: 100%;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--media-radius);
}

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

.cart-item__name {
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.cart-item__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 1.2rem;
}

.cart-item__pricing_compare,
.cart-item__pricing_sale {
  display: inline-flex;
  align-items: center;
}

.cart-item__old-price {
  opacity: 0.4;
}

.cart-item__final-price {
  font-size: 1.2rem !important;
  font-weight: 550;
}

.product-option {
  font-size: 1.1rem;
  word-break: break-word;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.product-option__value,
.product-option__value a {
  word-break: break-word;
}
/* ==========================================================================
   QUANTITY
   ========================================================================== */

.cart-item__quantity-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1.2rem;
}

.quantity {
  color: var(--primary-dark);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 8.6rem;
  min-height: 2.8rem;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  background:rgb(255, 255, 255);
  overflow: hidden;
}

.quantity:before,
.quantity:after {
  display: none;
}

.quantity__button {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  padding: 0.7rem 0.4rem;
  min-width: 0;
  min-height: 0;
  line-height: 1;
}

.quantity__button svg {
  width: 1rem;
  pointer-events: none;
}

.quantity__button:hover,
.quantity__button:focus {
  color: #080808;
  box-shadow: none;
  transition: color 0.25s ease;
}

.quantity__input {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}

.quantity__input:focus {
  outline: none;
}

/* ==========================================================================
   REMOVE BUTTON
   ========================================================================== */

.cart-item cart-remove-button {
  display: flex;
}

.cart-remove__button {
  min-width: calc(4.5rem / var(--font-body-scale));
  display: inline-flex;
  padding: 0.5rem;
  border: none;
  outline: none;
  color: var(--primary-dark);
  background-color: transparent;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.cart-remove__button:before,
.cart-remove__button:after {
  content: none;
}

.cart-remove__button .icon-remove {
  height: 16px;
  width: 16px;
  color: var(--primary-dark);
}

/* ==========================================================================
   LOADING / ERRORS
   ========================================================================== */

.cart-item .loading__spinner {
  top: 0;
  left: auto;
  right: auto;
  bottom: 0;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .cart-item .loading__spinner {
    right: 0;
    padding-top: 4.5rem;
    bottom: auto;
  }
}

.cart-item .loading__spinner:not(.hidden) ~ * {
  visibility: hidden;
}

.cart-item__error {
  display: block;
  margin-top: 0.2rem;
  width: 100%;
}

.cart-item__error-text {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04rem;
}

.cart-item__error-text:empty {
  display: none;
}

/* ==========================================================================
   PREMIUM UPDATE STATES
   ========================================================================== */

.cart-item {
  transform-origin: top center;
  transition:
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
  transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
  max-height 480ms cubic-bezier(0.22, 1, 0.36, 1),
  padding-top 480ms cubic-bezier(0.22, 1, 0.36, 1),
  padding-bottom 480ms cubic-bezier(0.22, 1, 0.36, 1),
  margin-top 480ms cubic-bezier(0.22, 1, 0.36, 1),
  margin-bottom 480ms cubic-bezier(0.22, 1, 0.36, 1);
    border-color 220ms ease;
  will-change: opacity, transform, max-height;
  max-height: 220px;
  overflow: hidden;
}

.cart-item.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  max-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-color: transparent;
  pointer-events: none;
}

.cart-item.is-updating .loading__spinner {
  opacity: 1;
}