/* ============================================================
   Flow — Full cart page (/cart/)
   Soft card layout adapted from the "Skyrise decor" cart reference,
   typed entirely in the brand sans (General Sans) with IBM Plex Mono
   for fine print. Rounded white cards, pill buttons + qty steppers.
   Still classic-WooCommerce under the hood (native qty form submit,
   coupons, fragments, Stripe express).
   ============================================================ */

.flow-cart-page {
  --ck-ink: #0a0a0a;
  --ck-ink-soft: #2a2a26;
  --ck-muted: #6b6b66;
  --ck-muted-2: #9b9b95;
  --ck-bg: #ffffff;
  --ck-surface: #ffffff;
  --ck-surface-2: #f3f1ec;
  --ck-hairline: #ecebe6;
  --ck-hairline-strong: #dcdad3;
  --ck-accent: #6A8E92;
  --ck-accent-soft: #eef3f2;
  --ck-accent-ink: #3f5b5d;
  --ck-sans: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ck-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  --ck-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --card-radius: 18px;
  --card-border: #ececea;
  --card-shadow: 0 1px 2px rgba(20, 20, 18, 0.04), 0 10px 30px rgba(20, 20, 18, 0.04);

  max-width: 1200px;
  margin: 0 auto;
  /* top padding clears the fixed .main-nav (64px) */
  padding: 104px 32px 96px;
  font-family: var(--ck-sans);
  color: var(--ck-ink);
  font-size: 14px;
  line-height: 1.5;
}
.flow-cart-page *,
.flow-cart-page *::before,
.flow-cart-page *::after { box-sizing: border-box; }
.flow-cart-page .num { font-variant-numeric: tabular-nums; }
.flow-cart-page .woocommerce-Price-amount,
.flow-cart-page .woocommerce-Price-currencySymbol { font-family: inherit; }

/* Page stays white; cards read via their border + soft shadow. */
body.woocommerce-cart { background: #ffffff; }

/* ── Page header ─────────────────────────────────────── */
.flow-cart-hd {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.flow-cart-hd .crumb {
  font-family: var(--ck-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ck-muted);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.flow-cart-hd .crumb a { color: inherit; text-decoration: none; }
.flow-cart-hd .crumb a:hover { color: var(--ck-ink); }
.flow-cart-hd .crumb .slash { color: var(--ck-muted-2); }
.flow-cart-hd h1 {
  font-family: var(--ck-sans);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ck-ink);
}
.flow-cart-hd h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--ck-muted-2);
  font-size: 0.42em;
  letter-spacing: 0;
  margin-left: 12px;
  vertical-align: 0.12em;
  font-variant-numeric: tabular-nums;
}
.flow-cart-hd .hd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ck-ink);
  text-decoration: none;
  white-space: nowrap;
}
.flow-cart-hd .hd-back:hover { color: var(--ck-muted); }
.flow-cart-hd .hd-back svg { display: block; }

/* ── Main grid ───────────────────────────────────────── */
.flow-cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 1fr);
  gap: 28px;
  align-items: start;
}
.flow-cart-list { min-width: 0; }

/* ── Items card ──────────────────────────────────────── */
.flow-cart-card {
  background: var(--ck-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 6px 28px;
}

/* Column labels + rows share one 5-col grid */
.flow-cart-cols,
.flow-cart-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 150px 110px 44px;
  gap: 20px;
  align-items: center;
}
.flow-cart-cols {
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--ck-hairline);
  font-size: 12px;
  font-weight: 500;
  color: var(--ck-muted);
}
.flow-cart-cols .col-product { grid-column: 1 / 3; }
.flow-cart-cols .col-action { text-align: right; }

/* ── Cart row ────────────────────────────────────────── */
.flow-cart-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--ck-hairline);
}
.flow-cart-row:last-child { border-bottom: 0; }
.flow-cart-row .thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--ck-surface-2);
  position: relative;
  overflow: hidden;
}
.flow-cart-row .thumb a,
.flow-cart-row .thumb img { display: block; width: 100%; height: 100%; }
.flow-cart-row .thumb img {
  object-fit: contain;
  padding: 7px;
  float: none;
  margin: 0;
  max-width: 100%;
}
.flow-cart-row .info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.flow-cart-row .info .kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ck-muted-2);
  font-weight: 500;
}
.flow-cart-row .info .name {
  font-family: var(--ck-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ck-ink);
}
.flow-cart-row .info .name a { color: inherit; text-decoration: none; }
.flow-cart-row .info .name a:hover { text-decoration: underline; text-underline-offset: 3px; }
.flow-cart-row .info .subtitle { font-size: 13px; color: var(--ck-muted); }
.flow-cart-row .info .variant { font-size: 12.5px; color: var(--ck-muted); }
.flow-cart-row .info .variant p,
.flow-cart-row .info .variant dl { margin: 0; }
.flow-cart-row .info .variant dt { font-weight: 600; display: inline; }
.flow-cart-row .info .variant dd { display: inline; margin: 0 0 0 4px; }
.flow-cart-row .info .backorder-note { margin: 3px 0 0; font-size: 11.5px; color: var(--ck-accent-ink); }
.flow-cart-row .info .unit-inline {
  font-size: 12.5px;
  color: var(--ck-muted);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

.flow-cart-row .line-total {
  font-family: var(--ck-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ck-ink);
  text-align: left;
  font-variant-numeric: tabular-nums;
}

/* ── Quantity stepper — pill (− value +), like the drawer ─ */
.flow-cart-row .qty-cell { display: flex; justify-content: flex-start; }
.flow-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--ck-hairline-strong);
  border-radius: 999px;
  height: 40px;
  padding: 0 4px;
  background: var(--ck-bg);
}
.flow-cart-qty .qstep {
  appearance: none;
  border: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ck-ink);
  padding: 0;
  transition: background 0.15s var(--ck-ease);
}
.flow-cart-qty .qstep:hover { background: var(--ck-surface-2); }
.flow-cart-qty .qstep:disabled,
.flow-cart-qty .qstep[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.flow-cart-qty .qstep:disabled:hover { background: transparent; }
.flow-cart-qty .qstep svg { display: block; }
.flow-cart-qty .quantity { margin: 0; display: flex; align-items: center; }
.flow-cart-qty input.qty {
  width: 34px;
  height: 36px;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: var(--ck-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ck-ink);
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flow-cart-qty input.qty::-webkit-outer-spin-button,
.flow-cart-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.flow-cart-qty.is-fixed .qstep { display: none; }
.flow-cart-qty.is-fixed { padding: 0 10px; }
/* Brief in-flight state while the AJAX qty update is round-tripping. */
.flow-cart-qty.is-loading { opacity: 0.5; pointer-events: none; }

/* ── Remove × ────────────────────────────────────────── */
.flow-cart-page .row-remove { display: flex; justify-content: flex-end; }
.flow-cart-page a.remove,
.flow-cart-page a.remove:visited {
  width: 36px !important;
  height: 36px !important;
  color: var(--ck-muted) !important;
  background: transparent !important;
  border-radius: 50%;
  font-size: 0 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s var(--ck-ease), color 0.18s var(--ck-ease);
}
.flow-cart-page a.remove:hover {
  color: var(--ck-ink) !important;
  background: var(--ck-surface-2) !important;
}
.flow-cart-page a.remove svg { display: block; }

/* ── List footer — Update cart pill ──────────────────── */
.flow-cart-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.flow-cart-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  background: var(--ck-ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--ck-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s var(--ck-ease);
}
.flow-cart-update:hover { background: var(--ck-ink-soft); }
.flow-cart-foot .foot-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ck-muted);
  text-decoration: none;
}
.flow-cart-foot .foot-left:hover { color: var(--ck-ink); }
.flow-cart-foot .foot-left svg { display: block; }

/* ── Summary card ────────────────────────────────────── */
.flow-cart-aside { min-width: 0; }
.flow-sum {
  position: sticky;
  top: 104px;
  background: var(--ck-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
}
.sum-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sum-hd h3 { margin: 0; font-family: var(--ck-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.sum-hd .count { font-size: 12px; color: var(--ck-muted); }

/* Promo / voucher — one full-width pill with the Apply button embedded inside.
   Apply stays muted + non-interactive until a code is typed, then lights up:
   :placeholder-shown is true only while the field is empty (placeholder visible). */
.sum-promo { position: relative; margin-bottom: 22px; }
.sum-promo .input {
  width: 100%;
  appearance: none;
  background: var(--ck-bg);
  border: 1px solid var(--ck-hairline-strong);
  border-radius: 999px;
  /* generous right padding so typed text never slips under the Apply button */
  padding: 13px 96px 13px 18px;
  font-size: 13px;
  font-family: var(--ck-sans);
  color: var(--ck-ink);
  outline: none;
  transition: border-color 0.15s var(--ck-ease);
}
.sum-promo .input:focus { border-color: var(--ck-ink); }
.sum-promo .apply {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  appearance: none;
  border: 0;
  background: var(--ck-ink);
  color: #fff;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ck-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s var(--ck-ease), color 0.18s var(--ck-ease);
}
.sum-promo .apply:hover { background: var(--ck-ink-soft); }
/* Empty field → muted, non-interactive Apply */
.sum-promo .input:placeholder-shown ~ .apply {
  background: var(--ck-surface-2);
  color: var(--ck-muted-2);
  cursor: not-allowed;
  pointer-events: none;
}

.sum-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ck-accent-soft);
  border: 1px solid color-mix(in srgb, var(--ck-accent) 28%, transparent);
  border-radius: 12px;
  padding: 10px 14px;
  margin: -8px 0 20px;
  font-size: 12px;
  gap: 12px;
}
.sum-applied .code { font-family: var(--ck-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ck-accent-ink); }
.sum-applied .value { display: inline-flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; color: var(--ck-ink); font-weight: 600; }
.sum-applied .value .x { display: inline-flex; color: var(--ck-muted); padding: 2px; }
.sum-applied .value .x:hover { color: var(--ck-ink); }
.sum-applied .value .x svg { display: block; }

/* Totals rows */
.sum-rows { display: flex; flex-direction: column; }
.sum-rows .row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 13.5px; }
.sum-rows .row .lbl { color: var(--ck-muted); }
.sum-rows .row .lbl small { color: var(--ck-muted-2); font-size: 11px; margin-left: 2px; }
.sum-rows .row .v { font-variant-numeric: tabular-nums; color: var(--ck-ink); font-weight: 600; }
.sum-rows .row .v.muted-v { color: var(--ck-muted); font-size: 12.5px; font-weight: 500; }

.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--ck-hairline);
  margin-top: 14px;
  padding-top: 18px;
}
.sum-total .lbl { font-family: var(--ck-sans); font-weight: 600; font-size: 16px; }
.sum-total .v { font-family: var(--ck-sans); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.sum-total .v small { font-family: var(--ck-sans); font-size: 12px; color: var(--ck-muted); letter-spacing: 0; margin-left: 6px; font-weight: 500; font-variant-numeric: normal; }

.sum-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
/* Stripe Express Checkout (Apple Pay / Google Pay / Link), above Checkout.
   Self-hides until its JS confirms a wallet/Link. Full width so it lines up
   with the Checkout button; height/theme/radius come from Stripe settings. */
.flow-cart-page .flow-cart-express { width: 100%; }
.flow-cart-page .flow-cart-express #wc-stripe-express-checkout-element {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100%;
}

.sum-trust {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ck-hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11.5px;
  color: var(--ck-muted);
  line-height: 1.5;
}
.sum-trust .item { display: flex; gap: 10px; align-items: flex-start; }
.sum-trust .item .ic { width: 18px; height: 18px; color: var(--ck-ink); flex-shrink: 0; }
.sum-trust .item .ic svg { display: block; }
.sum-trust .item strong { display: block; font-weight: 600; font-size: 11.5px; color: var(--ck-ink); margin-bottom: 2px; }

/* ── Buttons (pill) ──────────────────────────────────── */
.flow-cart-page .btn-cart-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  background: var(--ck-ink);
  color: #fff;
  font-family: var(--ck-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s var(--ck-ease);
}
.flow-cart-page .btn-cart-primary:hover { background: var(--ck-ink-soft); }
.flow-cart-page .btn-cart-primary.block { width: 100%; }
.flow-cart-page .btn-cart-primary svg { display: block; }
.flow-cart-page .btn-cart-subtle {
  appearance: none;
  background: transparent;
  color: var(--ck-muted);
  border: 0;
  padding: 6px 0;
  font-family: var(--ck-sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  text-align: center;
}
.flow-cart-page .btn-cart-subtle:hover { color: var(--ck-ink); }
.flow-cart-page .btn-cart-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  background: transparent;
  color: var(--ck-ink);
  border: 1px solid var(--ck-hairline-strong);
  font-family: var(--ck-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s var(--ck-ease), color 0.18s var(--ck-ease), border-color 0.18s var(--ck-ease);
}
.flow-cart-page .btn-cart-ghost:hover { background: var(--ck-ink); color: #fff; border-color: var(--ck-ink); }

/* ── Cross-sell strip ────────────────────────────────── */
.flow-cart-crosssell { margin-top: 64px; }
.flow-cart-crosssell .cs-hd { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; gap: 20px; }
.flow-cart-crosssell .cs-hd h3 { margin: 0; font-family: var(--ck-sans); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.flow-cart-crosssell .cs-lnk { font-size: 13px; font-weight: 500; color: var(--ck-ink); text-decoration: none; white-space: nowrap; }
.flow-cart-crosssell .cs-lnk:hover { color: var(--ck-muted); }
.flow-cart-crosssell .cs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flow-cart-crosssell .cs-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--ck-surface);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 12px;
  transition: transform 0.18s var(--ck-ease), box-shadow 0.18s var(--ck-ease);
}
.flow-cart-crosssell .cs-card:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(20,20,18,0.05), 0 16px 36px rgba(20,20,18,0.07); }
.flow-cart-crosssell .cs-card .img { aspect-ratio: 1 / 1; background: var(--ck-surface-2); border-radius: 10px; position: relative; overflow: hidden; margin-bottom: 12px; }
.flow-cart-crosssell .cs-card .img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.flow-cart-crosssell .cs-card .name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.flow-cart-crosssell .cs-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12px; color: var(--ck-muted); margin-top: 4px; }
.flow-cart-crosssell .cs-card .meta .cat { text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; }
.flow-cart-crosssell .cs-card .meta .price { color: var(--ck-ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Empty state ─────────────────────────────────────── */
.flow-cart-empty {
  text-align: center;
  padding: 64px 28px 56px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ck-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}
.flow-cart-empty .mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ck-surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ck-muted);
  margin-bottom: 24px;
}
.flow-cart-empty .mark svg { display: block; }
.flow-cart-empty .eyebrow {
  font-family: var(--ck-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ck-muted);
  margin-bottom: 14px;
}
.flow-cart-empty h2 {
  margin: 0 0 14px;
  font-family: var(--ck-sans);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.flow-cart-empty h2 em { font-style: normal; color: var(--ck-muted-2); }
.flow-cart-empty p { margin: 0 auto 28px; max-width: 44ch; color: var(--ck-muted); font-size: 14.5px; line-height: 1.6; }
.flow-cart-empty .cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Mobile sticky bar ───────────────────────────────── */
.flow-cart-mobilebar { display: none; }
.flow-cart-mobilebar .mb-meta { display: flex; flex-direction: column; line-height: 1.2; }
.flow-cart-mobilebar .mb-count { font-size: 11px; color: var(--ck-muted); }
.flow-cart-mobilebar .mb-total { font-family: var(--ck-sans); font-weight: 700; font-size: 19px; color: var(--ck-ink); font-variant-numeric: tabular-nums; }

/* ── WC notices on the cart (coupon apply / errors) ──── */
.woocommerce-cart .site-main .woocommerce-message,
.woocommerce-cart .site-main .woocommerce-error,
.woocommerce-cart .site-main .woocommerce-info {
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid var(--card-border, #ececea);
  border-left: 3px solid #6A8E92;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20,20,18,0.04);
  font-family: 'General Sans', -apple-system, sans-serif;
  font-size: 13px;
  color: #0a0a0a;
  list-style: none;
}
.woocommerce-cart .site-main .woocommerce-error { border-left-color: #b4452f; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 980px) {
  .flow-cart-grid { grid-template-columns: 1fr; gap: 24px; }
  .flow-sum { position: static; }
  .flow-cart-crosssell .cs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .flow-cart-mobilebar {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px 12px 20px;
    background: color-mix(in srgb, #ffffff 94%, transparent);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(20,20,18,0.12);
  }
  .flow-cart-mobilebar .btn-cart-primary { height: 46px; flex: 0 0 auto; }
}

@media (max-width: 640px) {
  .flow-cart-page { padding: 88px 16px 120px; }
  .flow-cart-hd { grid-template-columns: 1fr; gap: 12px; align-items: start; margin-bottom: 22px; }
  .flow-cart-card { padding: 4px 18px; }
  .flow-sum { padding: 22px; }

  .flow-cart-cols { display: none; }
  .flow-cart-row {
    grid-template-columns: 64px 1fr auto;
    grid-template-areas:
      "thumb info action"
      "thumb qty total";
    gap: 8px 14px;
    align-items: start;
    padding: 18px 0;
  }
  .flow-cart-row .thumb { grid-area: thumb; }
  .flow-cart-row .info { grid-area: info; }
  .flow-cart-row .qty-cell { grid-area: qty; margin-top: 8px; align-self: end; }
  .flow-cart-row .line-total { grid-area: total; align-self: end; justify-self: end; text-align: right; }
  .flow-cart-row .row-remove { grid-area: action; justify-self: end; }

  .flow-cart-crosssell .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flow-cart-crosssell { margin-top: 44px; }
}
