/** Shopify CDN: Minification failed

Line 11:13 Expected ":"

**/
 .c-title,
 .q-action{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;s
 }
 .cart-content{
    display: block;
    height: 100%;
    width: 100%;
  }
  .cart-content .qs-btn {
    width: clamp(24px,3.3333vw,32px);
    height: clamp(24px,3.3333vw,32px);
  }
  .cart-content .qs-btn span{
    /* font-size:clamp(16px,3.3333vw,24px);
    align-items: center;
    height: fit-content; */
    font-size: clamp(17px, 3.3333vw, 24px);
    align-items: self-start;
    height: -webkit-fill-available;
  }
  .cart-wrapper{
   margin-bottom:25px;
  }
   .cart-main{
      display:flex;
      gap:14px;
      position:relative;
   }
   .cart-item_title{
      font-size:var(--text-llg);
      font-weight:400;
   }
  .cart-img .c-img{
   width:135px;
   height:135px;
   object-fit:contain;
  }
  .cart-content .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    height:100%;
  }
  .cart-content .regular-price{
    font-size:var(--text-smm);
  }
  .cart-variant{
   color:var(--color-black);
   font-size:var(--text-smm);
   white-space: nowrap;

  }
  .cart-variant span{
   color:var(--color-gray);
  }
  .cart-quantity_text{
   font-size:var(--text-xs);
   color:var(--color-gray);
  }
  .cart-remove{
    /* position: absolute;
    top: 4px;
    right: 0; */
    width: 30px;
    height: 30px;
    border: none;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background:transparent;
  }
   .cart-remove svg path{
    fill:var(--color-black);
   }
  .cart-page{
    margin:40px 0;
  }
  .cart-page .cart-left{
    width:60%;
  }
  .cart-page .cart-left li{
    border-bottom:1px solid #73737321;
    padding-bottom: 20px;
  }
  .cart-page .cart-right{
    width:40%;
  }
  .cart-wrapper{
    display:flex;
    gap: 60px;
  }
  .cart-main{
    width:100%;
  }
  .cart-summary {
  padding: 30px;
  border: 1px solid #e5e5e5;
  background: var(--color-white);
  position: sticky;
  top: 20px;
}

.cart-summary h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
}

.summary-row:last-of-type {
  margin-bottom: 0;
}

.summary-row.discount {
  color: #198754;
}
.tax-note {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--color-black);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.checkout-btn:hover {
  background: #fff;
  color: var(--color-black);
}
.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
}

.continue-shopping:hover {
  text-decoration: underline;
}

.cart-ajax-error {
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin: 0 16px 12px;
  padding: 12px 16px;
  background: #fff5f5;
  border: 1px solid #e53e3e;
  color: #c53030;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-ajax-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-ajax-error__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #c53030;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cart-ajax-error__msg {
  flex: 1;
  line-height: 1.5;
}
.cart-content .incl-vat{
  display:none;
}
.empty-cart{
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.empty-cart h3{
  font-size:var(--text-lg);
  font-weight:400;
}
.empty-cart a{
  text-decoration:underline;
  font-size: var(--text-ssm);
}
.cart-item__properties{
  font-size:12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-item__property{
  display: flex;
  flex-direction:column;
  gap: 5px;
}
.cart-item__property span{
   font-weight:400;
}
.gift_wrapper h3{
  margin-bottom:15px;
}
.gift_wrapper textarea{
  resize:none;
}
@media(max-width:1024px){
  .cart-quantity_text{
    display:none;
  }
  .cart-wrapper{
    flex-direction:column;
    gap:20px;
  }
  .cart-page .cart-left,
  .cart-page .cart-right
  {
    width:100%;
  }
}