/** Shopify CDN: Minification failed

Line 537:1 Unexpected "<"
Line 539:3 Expected identifier but found "%"
Line 539:49 Unexpected "="
Line 539:62 Expected identifier but found "%"
Line 540:4 Unexpected "="
Line 542:3 Unexpected "{"
Line 542:5 Expected identifier but found "'sections.cart.proceed_to_checkout'"
Line 543:0 Unexpected "<"

**/
/* ---------------------------
   CLEANED-UP CART CSS
--------------------------- */

/* GENERAL CART STYLING */
.cart-container {
  padding: 0;
}

.cart-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
  padding: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  padding: 20px 10px;
  gap: 15px;
}

.cart-item-block {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.cart-item-block.cart-item-info {
  flex: 2;
}

.cart-item-block.cart-item-price,
.cart-item-block.cart-item-quantity,
.cart-item-block.cart-item-remove {
  flex: 1;
  text-align: center;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.cart-item-variant,
.cart-item-vendor {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.cart-item__price-wrapper .price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cart-item-qty input {
  width: 50px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-item-qty .btn-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* REMOVE TAX/SHIPPING TEXT */
.cart-totals__tax-shipping,
.cart-totals__note {
  display: none !important;
}

/* CART TOTALS */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.cart-totals .cart-totals__subtotal,
.cart-totals .cart-totals__total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

/* REMOVE UNNECESSARY ELEMENTS */
.cart-header-item.cart-header-total,
.cart-header-item.cart-header-quantity {
  display: none;
}

/* MOBILE STYLING */
@media (max-width: 767px) {

  .cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
      "item-info item-price"
      "item-info item-quantity"
      "item-info item-remove";
    column-gap: 10px;
    padding: 10px 0 10px 10px;
  }

  .cart-item-block.cart-item-info { grid-area: item-info; }
  .cart-item-block.cart-item-price { grid-area: item-price; text-align: right; }
  .cart-item-block.cart-item-quantity { grid-area: item-quantity; text-align: right; }
  .cart-item-block.cart-item-remove { grid-area: item-remove; text-align: right; }

  .cart-item-qty .btn-quantity {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin: 0 5px;
  }

  .cart-item-qty .btn-quantity.plus::after {
    content: "+" !important;
  }

  .cart-item-qty .btn-quantity.minus::before {
    content: "-" !important;
  }

  .cart-content-wrapper .cart-actions {
    margin-top: 20px;
  }
}

/* TABLET STYLING */
@media (min-width: 768px) and (max-width: 1024px) {
  .cart-item {
    flex-direction: row;
  }

  .cart-item-block.cart-item-info {
    padding-left: 10px;
  }

  .cart-totals {
    gap: 12px;
  }
}

/* DESKTOP STYLING */
@media (min-width: 1025px) {
  .cart-item {
    flex-direction: row;
  }

  .cart-item-block.cart-item-info {
    padding-left: 20px;
  }

  .cart-item-qty input {
    width: 60px;
    height: 35px;
  }
}/* ---------------------------
   HORIZONTAL CART CSS
--------------------------- */

/* CART CONTAINER */
.cart-container {
  padding: 0;
}

.cart-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
  padding: 0;
}

/* CART ITEM */
.cart-item {
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  padding: 15px 10px;
  gap: 15px;
}

/* CART ITEM IMAGE */
.cart-item-block.cart-item-image,
.cart-item-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

/* CART ITEM INFO */
.cart-item-block.cart-item-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.cart-item-variant,
.cart-item-vendor {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* PRICE, QTY, REMOVE */
.cart-item-block.cart-item-price,
.cart-item-block.cart-item-quantity,
.cart-item-block.cart-item-remove {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* QUANTITY BUTTONS */
.cart-item-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cart-item-qty input {
  width: 50px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-item-qty .btn-quantity {
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-item-qty .btn-quantity.plus::after { content: "+"; }
.cart-item-qty .btn-quantity.minus::before { content: "-"; }

/* CART TOTALS */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.cart-totals .cart-totals__subtotal,
.cart-totals .cart-totals__total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

/* REMOVE TAX/SHIPPING */
.cart-totals__tax-shipping,
.cart-totals__note {
  display: none !important;
}

/* MOBILE STYLING */
@media (max-width: 767px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cart-item-block.cart-item-price,
  .cart-item-block.cart-item-quantity,
  .cart-item-block.cart-item-remove {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  .cart-item-qty input {
    width: 60px;
    height: 35px;
  }

  .cart-item-qty .btn-quantity {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}

/* TABLET STYLING */
@media (min-width: 768px) and (max-width: 1024px) {
  .cart-item {
    flex-direction: row;
  }
}

/* DESKTOP STYLING */
@media (min-width: 1025px) {
  .cart-item {
    flex-direction: row;
  }
}/* ---------------------------
   CLEAN HORIZONTAL CART LAYOUT
--------------------------- */

/* CART ITEM WRAPPER */
.cart-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
  padding: 0;
}

/* CART ITEM ROW */
.cart-item {
  display: flex;
  align-items: flex-start;
  border: 1px solid #e6e6e6;
  padding: 15px 10px;
  gap: 15px;
}

/* PRODUCT IMAGE */
.cart-item-block.cart-item-image,
.cart-item-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* PRODUCT INFO */
.cart-item-block.cart-item-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.cart-item-variant,
.cart-item-vendor {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* RIGHT COLUMN: PRICE, QTY, REMOVE */
.cart-item-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-end;
}

/* PRICE */
.cart-item-block.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

/* QUANTITY */
.cart-item-qty {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.cart-item-qty input {
  width: 50px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cart-item-qty .btn-quantity {
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-item-qty .btn-quantity.plus::after { content: "+"; }
.cart-item-qty .btn-quantity.minus::before { content: "-"; }

/* REMOVE BUTTON */
.cart-item-block.cart-item-remove {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.cart-item-block.cart-item-remove svg {
  width: 20px;
  height: 20px;
  fill: #555;
}

/* HIDE TAX/SHIPPING */
.cart-totals__tax-shipping,
.cart-totals__note {
  display: none !important;
}

/* -------------------------
   MOBILE LAYOUT
------------------------- */
@media (max-width: 767px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cart-item-right {
    align-items: flex-start;
    width: 100%;
  }

  .cart-item-qty input {
    width: 60px;
    height: 35px;
  }

  .cart-item-qty .btn-quantity {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .cart-item-block.cart-item-price {
    text-align: left;
  }
}

/* -------------------------
   TABLET/DESKTOP LAYOUT
------------------------- */
@media (min-width: 768px) {
  .cart-item {
    flex-direction: row;
  }

  .cart-item-right {
    flex-direction: column;
    align-items: flex-end;
  }
}.cart-item-block.cart-item-quantity:not(.small-screen-visible) {
  display: none !important;
}<button 
  class="button button-1 button-checkout sticky" 
  {% if settings.show_global_checkbox %} disabled="disabled" {% endif %} 
  id="cart-checkout" 
  data-href="{{ routes.cart_url | split: '/cart' | first }}/checkout">
  {{ 'sections.cart.proceed_to_checkout' | t }}
</button>