/** Shopify CDN: Minification failed

Line 321:0 Unexpected "}"

**/
.cart {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
}

/* Empty cart display logic */
.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;
  font-size: 1.8rem;
}

.cart__contents > * + * {
  margin-top: 2.5rem;
}

/* Login prompt */
.cart__login-title {
  margin: 5.5rem 0 0.5rem;
  font-size: 1.6rem;
}
.cart__login-paragraph {
  margin-top: 0.8rem;
}
.cart__login-paragraph a {
  font-size: inherit;
}

/* Main cart items */
cart-items {
  display: block;
}
.cart__items {
  position: relative;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ddd;
}
.cart__items--disabled {
  pointer-events: none;
  opacity: 0.6;
}

/* Footer styles */
.cart__footer {
  padding: 1.5rem 0 0 !important;
}
.cart__footer-wrapper:last-child .cart__footer {
  padding-bottom: 5rem;
}
.cart__footer > div:only-child {
  margin-left: auto;
}
.cart__footer > * + * {
  margin-top: 4rem;
}
.cart__footer .discounts {
  margin-top: 1rem;
}

/* Notes */
.cart__note {
  height: fit-content;
  margin-top: 2rem;
}
.cart__note label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  font-size: 1.4rem;
  line-height: 1;
  height: 1.8rem;
  top: -3rem;
  color: rgba(0, 0, 0, 0.6);
}
.cart__note .field__input {
  height: 100%;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}
.cart__note .text-area {
  resize: vertical;
}
.cart__note .field__input:focus {
  border-color: #111;
}

.cart__ctas button {
  width: 100%;
}
.cart__ctas > *:not(noscript:first-child) + * {
  margin-top: 1rem;
}
.cart__update-button {
  margin-bottom: 1rem;
}

/* CHECKOUT BUTTON + EXPRESS */
.cart__dynamic-checkout-buttons {
  max-width: 100%;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cart-note__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/* Tax note */
.tax-note {
  margin: 2.2rem 0 1.6rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  display: block;
}

/* Grid layout */
.cart__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart__left {
  flex: 1 1 100%;
}
.cart__right {
  flex: 1 1 100%;
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center !important;
  padding: 30px 20px !important;
  max-width: 360px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.cart__right .totals {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cart__right .totals__subtotal::after {
  content: ":" !important;
  margin-left: 2px !important;
}

.cart__right .totals__subtotal-value {
  font-size: 2.1rem !important;
  font-weight: bold !important;
  color: #E8008A !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.cart__right .cart__ctas {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: .2rem;
  margin-bottom: 1rem !important;
}

.cart__right .cart__checkout-button {
  background: #0E1D41;
  color: #fff;
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
  width: 100%;
}

/* Fix subtotal on left side */
.cart-item__total,
td[class*="total"] {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #0E1D41 !important;
  text-align: right !important;
}

/* Text alignment */
.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;
  }
}

@media screen and (min-width: 990px) {
  .cart__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cart__left {
    flex: 1 1 64%;
    max-width: 64%;
  }

  .cart__right {
    flex: 1 1 36%;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: 2% !important;
    padding-left: 2rem !important;
  }
}
  /* Bold table headers */
.cart__items thead th {
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  color: #000000 !important;
  text-transform: uppercase !important;
}

  .cart__right {
    flex: 1 1 38%;
    max-width: 38%;
    padding: 3rem;
  }

  .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__right .totals__subtotal,
  .cart__right .totals__subtotal-value {
    font-size: 2.4rem;
  }

  .cart__right .cart__checkout-button {
    font-size: 1.8rem;
  }

  .cart__note label {
    font-size: 1.6rem;
  }
}

/* ================================
   Quantity + Totals Styling
   ================================ */

cart-items table th,
cart-items table td {
  font-size: 16px !important;
  color: #1a2e4a;
  padding: 1rem;
  font-weight: bold;
}

cart-items .cart-item__quantity {
  font-size: 16px !important;
}

cart-items input[type="number"] {
  font-size: 16px !important;
  padding: 8px 12px !important;
  border: 1px solid #000 !important;
  width: 80px !important;
  height: auto !important;
  text-align: center !important;
}

/* Remove number input arrows in all browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

cart-items .cart-item__totals,
cart-items .cart-item__totals span {
  font-size: 18px !important;
  font-weight: 600;
}

.remove-wrapper {
  width: 100%;
  text-align: center;
}

/* Move quantity left and fix layout */
.quantity-flex-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.quantity-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

/* Align buttons + input cleanly */
.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: none;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 22px;
  height: 22px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
}

input.quantity {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 6px;
  width: 30px;
  height: 40px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 3px;
  font-weight: 500;
}

.remove-wrapper {
  text-align: center;
  margin-top: 4px;
}

.quantity-trash-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

/* 🗑️ Trashcan icon inside total price cell */
.cart-item__total-cell .total-with-remove {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-item__remove-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #0E1E3A;
  display: flex;
  align-items: center;
}

.price-text-fixed {
  font-weight: 600;
  color: #0E1D41;
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}

.cart-item__remove-button:hover {
  opacity: 0.6;
}

.cart-item__remove-button svg {
  display: block;
}

/* Optional: Adjust spacing if needed */
.cart-item__total-price {
  font-weight: 700;
  font-size: 1.05rem;
}

.cart__items thead th:nth-child(4) {
  width: 30%; /* TOTAL column */
  text-align: right;
  padding-right: 40px;
}

/* ================================
   Right /Cart Styling
   ================================ */
/* Force override Shopify defaults and center pay buttons */

.cart__items thead th:nth-child(3) {
  text-align: right !important;
  padding-right: 60px !important; /* Adjust as needed */
}

.cart-actions-row-fixed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cart-item__total {
  text-align: right;
  padding-right: 30px; /* 👈 space from edge */
  vertical-align: middle;
  width: 100%;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart__right .totals__subtotal {
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: #0E1D41 !important;
  margin-bottom: 0.5rem !important;
  text-transform: none !important;
}

.cart__right .totals__subtotal-value {
  font-size: 2.2rem !important;
  color: #0E1D41 !important;
  font-weight: bold !important;
  text-align: center !important;
  margin-bottom: 5px !important;
}

.cart__right .tax-note,
.cart__right .tax-note p {
  text-align: center !important;
  font-size: 1.4rem !important;
  color: #666 !important;
  margin: 0 auto 1.5rem !important;
}

/* Right Checkout Card Background */
.cart__right {
  background-color: #f9f9f9 !important;
  border-radius: 12px !important;
  padding-left: 5px !important;
  padding-right: 25px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #ddd !important;
}

.cart__checkout-button {
  display: block !important;
  width: 100% !important;
  max-width: 300px !important;
  margin: 12px auto !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  background-color: #E8008A !important;
  color: #ffffff !important;
  padding: 14px 0 !important;
  border: none !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  text-align: center !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
  transition: background-color 0.2s ease;
}

.cart__checkout-button:hover {
  background-color: #0E76D8 !important;
}

.cart__right .cart__checkout-button {
  display: block !important;
  margin: 12px auto !important;
  max-width: 300px !important;
  width: 100% !important;
  text-align: center !important;
}
/* Controls the font size of "Express Checkout" on Checkout page */
.checkout-subtext {
  font-size: 1.7rem !important;
  font-weight: 700;
  color: #203f9a !important;
  text-align: center;
  padding-top: 1.25rem;
  padding-bottom: .5rem;
  margin: -8px 2px -5px 2px !important;
  line-height: .3;
}


/* ======= CART MOBILE FIXES (UPDATED FOR EXPRESS BUTTON WIDTH) ======= */
@media screen and (max-width: 749px) {
  .title-wrapper-with-link {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px;
    padding-bottom: 20px;
  }

  .title-wrapper-with-link .title {
    font-size: 22px !important;
    text-align: left !important;
  }

  .title-wrapper-with-link a {
    margin-left: 0 !important;
    font-size: 14px !important;
    text-align: left;
    padding: 0 !important;
  }

  .cart__wrapper {
    flex-direction: column !important;
    gap: 32px;
  }

  .cart__left,
  .cart__right {
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 0 10px !important;
  }

  .cart__right {
    margin: 0 auto;
    padding: 24px 16px !important;
  }

  .cart__checkout-button {
    font-size: 18px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .checkout-subtext {
    font-size: 15px !important;
    margin-bottom: 10px;
    text-align: center;
  }

  .cart__footer {
    padding-top: 10px !important;
  }

  .additional-checkout-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .additional-checkout-buttons > *,
  .additional-checkout-buttons iframe,
  .additional-checkout-buttons button,
  .additional-checkout-buttons div,
  .additional-checkout-buttons .shopify-payment-button__button,
  .additional-checkout-buttons .shopify-payment-button,
  .additional-checkout-buttons .shopify-payment-button__button--unbranded {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .shopify-payment-button iframe {
    width: 100% !important;
  }
}

[class*="section-template--"][class*="cart-items-padding"] {
  padding-top: 0 !important;
  padding-bottom: 5px !important;
  margin-top: -20px !important; /* adjust this number as needed */
}