/** Shopify CDN: Minification failed

Line 99:0 Unexpected "<"
Line 110:0 Unexpected "<"

**/
/* ============================== */
/* GARLIC MOON — CART FOOTER FINAL STYLING */
/* ============================== */
.cart__footer {
  padding: 2rem 1.5rem;
  background-color: #fffefb;
  border-top: 1px dashed #dcd2c5;
}

.totals {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2e2623;
  margin-bottom: 0.75rem;
}

.totals__subtotal {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4b403a;
  margin: 0;
}

.totals__subtotal-value {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0;
  color: #2e2623;
}

/* Taxes Note */
.tax-note {
  font-size: 0.85rem;
  color: #6e645d;
  margin-top: -0.5rem;
  margin-bottom: 1.2rem;
  font-style: italic;
  text-align: right;
}

/* Checkout Button */
.cart__ctas .cart__checkout-button {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #2e2623;
  color: #f9f7f3;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Padding + Spacing */
@media screen and (max-width: 749px) {
  .cart__footer {
    padding: 1.25rem 1rem 2rem 1rem;
  }

  .totals {
    font-size: 1.4rem;
  }

  .totals__subtotal {
    font-size: 1rem;
  }

  .totals__subtotal-value {
    font-size: 1.55rem;
  }

  .tax-note {
    text-align: right;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .cart__ctas .cart__checkout-button {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}
@media screen and (max-width: 749px) {
  .mobile-align-right {
    text-align: right;
    display: table-cell;
    vertical-align: middle;
  }
}
<style>
  @media screen and (max-width: 749px) {
    td.cart-item__remove.mobile-align-right {
      text-align: center !important;
    }

    cart-remove-button .remove-icon {
      margin: 0 auto;
      display: block !important;
    }
  }
</style>
