/** Shopify CDN: Minification failed

Line 17:25 Unexpected "<!--"
Line 33:0 Expected identifier but found "<"
Line 40:4 Comments in CSS use "/* ... */" instead of "//"
Line 72:6 Comments in CSS use "/* ... */" instead of "//"
Line 78:0 Expected identifier but found "<"

**/
.cart {
  position: relative;
  display: block;
}
.cart__empty-text,
.is-empty .cart__contents,
cart-items.is-empty .title-wrapper-with-link,
.is-empty .cart__footer {<!-- Shipping Protection Toggle -->
<div class="shipping-protection-toggle" style="display:flex; align-items:center; justify-content:space-between; padding:12px 0; border-top:1px solid #e8e8e8; margin-top:8px;">
  <div>
    <p style="margin:0; font-size:14px; font-weight:600;">🛡️ Shipping Protection</p>
    <p style="margin:0; font-size:12px; color:#6b7280;">Protect your order against loss or damage</p>
  </div>
  <label class="sp-switch" style="position:relative; display:inline-block; width:44px; height:24px;">
    <input type="checkbox" id="shipping-protection-toggle" checked style="opacity:0; width:0; height:0;">
    <span class="sp-slider" style="position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0; background:#000; border-radius:24px; transition:.3s;"></span>
  </label>
</div>

<style>
  #shipping-protection-toggle:not(:checked) + .sp-slider { background: #ccc; }
  .sp-slider:before { content:""; position:absolute; height:18px; width:18px; left:3px; bottom:3px; background:white; border-radius:50%; transition:.3s; }
  #shipping-protection-toggle:checked + .sp-slider:before { transform: translateX(20px); }
</style>

<script>
  (function() {
    const VARIANT_ID = 62622785831283;
    const toggle = document.getElementById('shipping-protection-toggle');

    // Auto-add on cart drawer open if not already in cart
    async function ensureProtectionInCart() {
      const cart = await fetch('/cart.js').then(r => r.json());
      const exists = cart.items.some(i => i.variant_id === VARIANT_ID);
      if (!exists) {
        await fetch('/cart/add.js', {
          method: 'POST',
          headers: {'Content-Type': 'application/json'},
          body: JSON.stringify({ id: VARIANT_ID, quantity: 1 })
        });
      }
      toggle.checked = exists || true;
    }

    toggle.addEventListener('change', async function() {
      if (this.checked) {
        await fetch('/cart/add.js', {
          method: 'POST',
          headers: {'Content-Type': 'application/json'},
          body: JSON.stringify({ id: VARIANT_ID, quantity: 1 })
        });
      } else {
        const cart = await fetch('/cart.js').then(r => r.json());
        const item = cart.items.find(i => i.variant_id === VARIANT_ID);
        if (item) {
          await fetch('/cart/change.js', {
            method: 'POST',
            headers: {'Content-Type': 'application/json'},
            body: JSON.stringify({ id: item.key, quantity: 0 })
          });
        }
      }
      // Refresh cart drawer
      document.dispatchEvent(new CustomEvent('cart:refresh'));
    });

    ensureProtectionInCart();
  })();
</script>
  display: none;
}
.is-empty .cart__empty-text,
.is-empty .cart__warnings {
  display: block;
}
.cart__warnings {
  display: none;
  text-align: center;
  padding: 3rem 0 1rem;
}
.cart__empty-text {
  margin: 4.5rem 0 2rem;
}
.cart__contents > * + * {
  margin-top: 0.5rem;
}
.cart__login-title {
  margin: 5.5rem 0 0.5rem;
}
.cart__login-paragraph {
  margin-top: 0.8rem;
}
.cart__login-paragraph a {
  font-size: inherit;
}
@media screen and (min-width: 990px) {
  .cart__warnings {
    padding: 7rem 0 1rem;
  }
  .cart__empty-text {
    margin: 0 0 3rem;
  }
}
cart-items {
  display: block;
}
.cart__items {
  position: relative;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}
.cart__items--disabled {
  pointer-events: none;
}
.cart__footer-wrapper:last-child .cart__footer {
  padding-bottom: 5rem;
}
.cart__footer > div:only-child {
  margin-left: auto;
}
.cart__footer > * + * {
  margin-top: 6.5rem;
}
.cart__footer .discounts {
  margin-bottom: 1rem;
}
.cart__note {
  height: fit-content;
  top: 2.5rem;
}
.cart__note label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  line-height: 1;
  height: 1.8rem;
  top: -3rem;
  color: rgba(var(--color-foreground), 0.75);
}
.cart__note .field__input {
  height: 100%;
  position: relative;
  border-radius: var(--inputs-radius);
  padding: 1rem 2rem;
}
.cart__note .text-area {
  resize: vertical;
}
.cart__note:after,
.cart__note:hover.cart__note:after,
.cart__note:before,
.cart__note:hover.cart__note:before,
.cart__note .field__input:focus,
.cart__note .field__input {
  border-bottom-right-radius: 0;
}
@media screen and (min-width: 750px) {
  .cart__items {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-bottom: 4rem;
  }
  .cart__contents > * + * {
    margin-top: 0;
  }
  .cart__items + .cart__footer {
    grid-column: 2;
  }
  .cart__footer {
    display: flex;
    justify-content: space-between;
    border: 0;
  }
  .cart__footer-wrapper:last-child {
    padding-top: 0;
  }
  .cart__footer > * {
    width: 35rem;
  }
  .cart__footer > * + * {
    margin-left: 4rem;
    margin-top: 0;
  }
}
.cart__ctas button {
  width: 100%;
  font-weight: var(--font-weight-semibold);
}
.cart__ctas > * + * {
  margin-top: 1rem;
}
.cart__update-button {
  margin-bottom: 1rem;
}
.cart__dynamic-checkout-buttons {
  max-width: 36rem;
  margin: 0 auto;
}
.cart__dynamic-checkout-buttons:has(.dynamic-checkout__content:empty) {
  margin: 0;
}
.cart__blocks > * + * {
  margin-top: 1rem;
}
.cart-note__label {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: calc(1 + 1 / var(--font-body-scale));
}
.tax-note {
  margin: 2.2rem 0 1.6rem auto;
  text-align: center;
  letter-spacing: var(--letter-spacing-body);
  display: block;
}
.cart__checkout-button {
  max-width: 36rem;
}
.cart__ctas {
  text-align: center;
}
@media screen and (min-width: 750px) {
  .cart-note {
    max-width: 35rem;
  }
  .cart__update-button {
    margin-bottom: 0;
    margin-right: 0.8rem;
  }
  .tax-note {
    margin-bottom: 2.2rem;
    text-align: right;
  }
  [data-shopify-buttoncontainer] {
    justify-content: flex-end;
  }
  .cart__ctas {
    display: flex;
    gap: 1rem;
  }
}
