/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 221:0 Unexpected "{"
Line 221:1 Expected identifier but found "%"

**/
{%- style -%}
  .cart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
  }

  .cart__header {
    margin-bottom: 40px;
    text-align: center;
  }

  .cart__header h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
  }

  .cart__items {
    display: grid;
    gap: 16px;
  }

  .cart__item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }

  .cart__item:last-child {
    border-bottom: none;
  }

  .cart__item-image {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
  }

  .cart__item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .cart__item-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #000;
  }

  .cart__item-variant {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
  }

  .cart__item-price {
    font-size: 14px;
    color: #666;
  }

  .cart__item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .quantity-button {
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .quantity-button:hover {
    opacity: 0.7;
  }

  .quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #f0f0f0;
    background: transparent;
  }

  .remove-item {
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .remove-item:hover {
    color: #000;
  }

  .cart__footer {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .cart__summary {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .cart__summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
  }

  .cart__summary-total {
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #000;
  }

  .cart__summary-total span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }

  .cart__summary-total span:last-child {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .cart__taxes-note {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
    line-height: 1.4;
  }

  .checkout-button {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
  }

  .checkout-button:hover {
    opacity: 0.9;
  }

  .continue-shopping {
    display: inline-block;
    margin-top: 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .continue-shopping:hover {
    opacity: 0.7;
  }

  @media screen and (max-width: 768px) {
    .cart__footer {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .cart__summary {
      padding: 20px;
    }

    .cart__item {
      grid-template-columns: 100px 1fr;
      padding: 12px;
    }

    .cart__item-image {
      width: 100px;
      height: 133px;
    }

    .remove-item {
      grid-column: 2;
      justify-self: end;
    }
  }
{%- endstyle -%}

a.cart-item__name.h4.break {
  font-weight: bold;
    font-size: 16px;
    color: #4f4f4f;
    overflow: hidden;
    text-overflow: ellipsis;
}