/** Shopify CDN: Minification failed

Line 230:0 Unexpected "`"
Line 413:0 Unexpected "`"

**/
.cart {
  position: relative;
  display: block;
}

.cart__empty-text,
.is-empty .cart__contents,
cart-items.is-empty .title-wrapper-with-link,
.is-empty .cart__footer {
  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: 2.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%;
}

.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;
  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;
  }
}

```css
/* MODERN CART DRAWER */

.drawer__inner {
  width: 480px;
  max-width: 100%;
  background: #fff;
  border-radius: 0;
  padding: 0;
}

.drawer__header {
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.drawer__heading {
  font-size: 30px;
  font-weight: 700;
}

.modern-cart-items {
  padding: 20px;
}

.modern-cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f1f1f1;
}

.modern-cart-image img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
  background: #f7f7f7;
}

.modern-cart-details {
  flex: 1;
}

.modern-cart-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modern-cart-top h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.modern-remove-btn {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

.modern-variant {
  color: #666;
  font-size: 13px;
  margin-top: 5px;
}

.modern-price-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.final-price {
  font-weight: 700;
  font-size: 18px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
  font-size: 14px;
}

.save-badge {
  background: #dff7df;
  color: #008000;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.modern-quantity {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #f7f7f7;
  font-size: 20px;
  cursor: pointer;
}

.qty-input {
  width: 45px;
  text-align: center;
  border: none;
  font-size: 16px;
}

.drawer__footer {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.free-shipping-wrapper {
  margin-bottom: 20px;
}

.free-shipping-wrapper p {
  margin-bottom: 10px;
  font-size: 14px;
}

.free-shipping-bar {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.free-shipping-progress {
  height: 100%;
  background: #16a34a;
  border-radius: 999px;
  transition: width .3s ease;
}

.free-shipping-success {
  color: #16a34a;
  font-weight: 700;
}

.cart__checkout-button {
  background: #16a34a !important;
  color: white !important;
  border-radius: 14px !important;
  min-height: 58px;
  font-size: 18px;
  font-weight: 700;
  border: none;
}

.cart__checkout-button:hover {
  opacity: .92;
}

cart-drawer-items::-webkit-scrollbar {
  width: 5px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 999px;
}
```
