/** Shopify CDN: Minification failed

Line 676:1 Expected "}" to go with "{"

**/
/* ============================================================
   SHOPIFY CART PAGE v2 — Modern Card UI
   File: assets/cart-page.css
   Style: Clean card-based, modern e-commerce
   Performance: GPU-composited, preload-ready
   ============================================================ */


/* ── CSS Custom Properties (All Editable via Schema) ── */
:root {
  /* Fonts */
  --c-font-body:    'Plus Jakarta Sans', sans-serif;
  --c-font-display: 'Playfair Display', Georgia, serif;

  /* Colors */
  --c-bg:           #f7f6f3;
  --c-white:        #ffffff;
  --c-black:        #0f0f0f;
  --c-text:         #1c1c1a;
  --c-text-soft:    #6b6b67;
  --c-text-muted:   #9c9c98;
  --c-border:       #e4e2dc;
  --c-border-dark:  #c8c5bc;
  --c-accent:       #0f0f0f;
  --c-accent-hover: #2a2a28;
  --c-tag-bg:       #edecea;
  --c-sale:         #d44a2a;
  --c-sale-bg:      #fdf3f0;
  --c-success:      #2e7d5e;
  --c-badge-bg:     #f0f5f2;

  /* Radius */
  --c-radius-sm:    6px;
  --c-radius:       12px;
  --c-radius-lg:    18px;
  --c-radius-pill:  100px;

  /* Shadows */
  --c-shadow-card:  0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --c-shadow-hover: 0 2px 8px rgba(0,0,0,0.08), 0 8px 28px rgba(0,0,0,0.08);
  --c-shadow-btn:   0 4px 16px rgba(15,15,15,0.22);

  /* Transitions */
  --c-ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --c-dur:    0.2s;
  --c-dur-lg: 0.35s;
}

/* ── Reset ── */
.cart-wrap *, .cart-wrap *::before, .cart-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.cart-wrap {
  font-family: var(--c-font-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 60vh;
  padding: 40px 0 80px;
 
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Container ── */
.cart-container {
  max-width: var(--c-max-width, 1180px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Page Heading ── */
.cart-heading {
  margin-bottom: 28px;
}
.cart-heading h1 {
  font-family: var(--c-font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-text);
  line-height: 1.1;
}
.cart-heading__meta {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 5px;
  font-weight: 400;
}

/* ── Two-Column Layout ── */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* ── Card Base ── */
.c-card {
  background: var(--c-white);
  border-radius: var(--c-radius-lg);
  box-shadow: var(--c-shadow-card);
  overflow: hidden;
}

/* ── Cart Items Card ── */
.cart-items-card {
  padding: 0;
}
.cart-items-card__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items-card__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ── Single Cart Item ── */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  transition: background var(--c-dur);
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #faf9f7; }

/* Item Number Badge */
.cart-item__num {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 20px;
  height: 20px;
  background: var(--c-text);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translate(-6px, -6px);
}

/* Image */
.cart-item__img-wrap {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: var(--c-radius);
  overflow: hidden;
  background: var(--c-tag-bg);
  position: relative;
  border: 1px solid var(--c-border);
}
.cart-item__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-border-dark);
}
.cart-item__img-placeholder svg { width: 32px; height: 32px; }

/* Item Body */
.cart-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
  text-decoration: none;
}
.cart-item__name:hover { color: var(--c-text-soft); }

/* Variant Tags */
.cart-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.cart-item__tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-soft);
  background: var(--c-tag-bg);
  padding: 3px 9px;
  border-radius: var(--c-radius-pill);
}

/* Sale badge */
.cart-item__sale-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-sale);
  background: var(--c-sale-bg);
  padding: 3px 9px;
  border-radius: var(--c-radius-pill);
}

/* Bottom row: qty + price */
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Quantity Control */
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-border);
  border-radius: var(--c-radius-pill);
  background: var(--c-white);
  height: 36px;
  overflow: hidden;
  transition: border-color var(--c-dur);
}
.qty-ctrl:focus-within { border-color: var(--c-text); }

.qty-ctrl__btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  cursor: pointer; color: var(--c-text);
  font-size: 15px; font-weight: 400;
  transition: background var(--c-dur), color var(--c-dur);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.qty-ctrl__btn:hover { background: var(--c-bg); }
.qty-ctrl__btn:active { transform: scale(0.88); }
.qty-ctrl__btn:disabled { opacity: 0.3; cursor: not-allowed; }

.qty-ctrl__val {
  width: 36px; text-align: center;
  font-family: var(--c-font-body);
  font-size: 14px; font-weight: 600;
  color: var(--c-text);
  border: none; outline: none; background: transparent;
  -moz-appearance: textfield; appearance: textfield;
}
.qty-ctrl__val::-webkit-inner-spin-button,
.qty-ctrl__val::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Price */
.cart-item__price-block {
  text-align: right;
}
.cart-item__price-original {
  font-size: 12px;
  color: var(--c-text-muted);
  text-decoration: line-through;
  display: block;
}
.cart-item__price-final {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.cart-item__price-final.is-sale { color: var(--c-sale); }
.cart-item__price-sub {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 1px;
  text-align: right;
}

/* Remove Button */
.cart-item__remove {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--c-text-muted);
  transition: all var(--c-dur);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.cart-item__remove:hover {
  border-color: var(--c-sale);
  color: var(--c-sale);
  background: var(--c-sale-bg);
}
.cart-item__remove svg { width: 12px; height: 12px; pointer-events: none; }

/* Removing animation */
.cart-item.is-removing {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: opacity 0.28s var(--c-ease), max-height 0.4s var(--c-ease), padding 0.3s;
  overflow: hidden;
  pointer-events: none;
}

/* ── Discount Code Card ── */
.cart-discount-card {
  margin-top: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-discount-card svg {
  width: 18px; height: 18px;
  color: var(--c-text-soft);
  flex-shrink: 0;
}
.cart-discount__input {
  flex: 1;
  border: none; outline: none;
  font-family: var(--c-font-body);
  font-size: 14px;
  color: var(--c-text);
  background: transparent;
  min-width: 0;
}
.cart-discount__input::placeholder { color: var(--c-text-muted); }
.cart-discount__btn {
  font-family: var(--c-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  background: transparent;
  border: 1.5px solid var(--c-border-dark);
  border-radius: var(--c-radius-pill);
  padding: 7px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--c-dur);
}
.cart-discount__btn:hover {
  background: var(--c-text);
  color: var(--c-white);
  border-color: var(--c-text);
}
.cart-discount__msg {
  font-size: 12px;
  margin-top: 8px;
  padding: 0 20px 12px;
  display: none;
}
.cart-discount__msg.ok  { color: var(--c-success); display: block; }
.cart-discount__msg.err { color: var(--c-sale); display: block; }

/* ── Banner Slot (replaces free shipping bar) ── */
.cart-banner {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--c-radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.cart-banner--info {
  background: #eef4ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.cart-banner--success {
  background: var(--c-badge-bg);
  color: var(--c-success);
  border: 1px solid #b7e0ce;
}
.cart-banner--promo {
  background: #fff8ee;
  color: #92400e;
  border: 1px solid #fde68a;
}
.cart-banner svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Order Summary ── */
.cart-summary-card { padding: 24px; }

.cart-summary__title {
  font-family: var(--c-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

/* Summary Lines */
.summary-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.summary-line__label { color: var(--c-text-soft); font-weight: 400; }
.summary-line__val   { color: var(--c-text); font-weight: 500; }
.summary-line__val--sale { color: var(--c-sale); font-weight: 600; }
.summary-line__val--free { color: var(--c-success); font-weight: 600; }

.summary-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 4px 0;
}

/* Total */
.summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 0 20px;
  border-top: 1.5px solid var(--c-text);
  margin-top: 4px;
}
.summary-total__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}
.summary-total__label span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.summary-total__amount {
  font-family: var(--c-font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── Checkout CTA ── */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: var(--c-radius-pill);
  font-family: var(--c-font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--c-dur), transform var(--c-dur), box-shadow var(--c-dur);
  box-shadow: var(--c-shadow-btn);
  -webkit-tap-highlight-color: transparent;
}
.cart-checkout-btn:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,15,15,0.28);
}
.cart-checkout-btn:active { transform: translateY(0); }
.cart-checkout-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.cart-checkout-btn.loading {
  pointer-events: none; opacity: 0.7;
}

/* ── Continue Shopping Button ── */
.cart-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  margin-top: 12px;
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-border-dark);
  border-radius: var(--c-radius-pill);
  font-family: var(--c-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--c-dur);
  -webkit-tap-highlight-color: transparent;
}
.cart-continue-btn:hover {
  border-color: var(--c-text);
  background: var(--c-bg);
}
.cart-continue-btn svg {
  width: 14px; height: 14px;
  transition: transform var(--c-dur);
}
.cart-continue-btn:hover svg { transform: translateX(-3px); }

/* ── Trust Badges ── */
.cart-trust {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cart-trust__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--c-text-soft);
  font-weight: 500;
}
.cart-trust__row svg {
  width: 16px; height: 16px;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

/* ── Order Note ── */
.cart-note-wrap {
  margin-top: 16px;
  padding: 18px 24px;
}
.cart-note-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.cart-note-textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px 14px;
  font-family: var(--c-font-body);
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--c-radius);
  outline: none;
  resize: vertical;
  transition: border-color var(--c-dur);
  line-height: 1.5;
}
.cart-note-textarea::placeholder { color: var(--c-text-muted); }
.cart-note-textarea:focus { border-color: var(--c-text); background: var(--c-white); }

/* ── Empty Cart ── */
.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 24px;
}
.cart-empty__icon { width: 72px; height: 72px; margin: 0 auto 24px; color: var(--c-border-dark); }
.cart-empty__title {
  font-family: var(--c-font-display);
  font-size: 32px; font-weight: 500;
  color: var(--c-text); margin-bottom: 12px;
}
.cart-empty__text { font-size: 15px; color: var(--c-text-muted); margin-bottom: 32px; }
.cart-empty__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: var(--c-text); color: #fff;
  border-radius: var(--c-radius-pill);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: all var(--c-dur);
}
.cart-empty__cta:hover { background: var(--c-accent-hover); transform: translateY(-1px); }

/* ── Toast ── */
.c-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--c-text); color: #fff;
  font-family: var(--c-font-body);
  font-size: 13px; font-weight: 500;
  padding: 11px 20px;
  border-radius: var(--c-radius-pill);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transition: transform 0.3s var(--c-ease), opacity 0.3s;
  z-index: 9999; white-space: nowrap;
  pointer-events: none;
}
.c-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
  .cart-wrap { padding: 24px 0 60px; }
}

@media (max-width: 560px) {
  .cart-container { padding: 0 12px; }
  .cart-item__remove {
    width: 16px;
    height: 16px;
  .cart-item { padding: 16px; gap: 12px; }
  .cart-item__img-wrap { width: 72px; height: 72px; }
  .cart-items-card__header,
  .cart-note-wrap { padding: 14px 16px; }
  .cart-summary-card { padding: 18px 16px; }
  .cart-discount-card { padding: 14px 16px; }
  .cart-item__name { font-size: 14px;  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}
  .summary-total__amount { font-size: 26px; }
}