/** Shopify CDN: Minification failed

Line 693:11 Unexpected "*"
Line 694:63 Unterminated string token

**/
/* ============================================================
   Cart PAGE layout — /cart only.
   Scoped entirely to .cart__template so it can never leak into
   .cart__drawer (which keeps its own cart-drawer-layout.css).
   Reuses the same brand tokens as the drawer skin for a
   consistent look, but with page-appropriate spacing/sizing.
   ============================================================ */

.cart__template {
  --cd-yellow:#fee000; --cd-seagull:#c1e3eb; --cd-red:#ff4d33; --cd-orange:#f89c3a;
  --cd-ink:#000; --cd-green:#3f6b3f; --cd-gogreen:#2f8f57; --cd-magenta:#b31d84;
  --cd-heading:'Quicksand',-apple-system,sans-serif; --cd-body:'Open Sans',-apple-system,sans-serif;
}


/* Cart Page Typography */
.cart__template {
  --cd-heading: "Nunito", sans-serif;
  --cd-body: "Open Sans", sans-serif;

  font-family: var(--cd-body);
}
/* ---------- Page shell ----------
   !important on purpose: the outer div also carries the theme's own
   sitewide "wrapper" class, which has its own responsive breakpoint
   (it drops its side padding somewhere in the ~1024-1125px range) that
   sits in between our 990px two-column grid breakpoint. That mismatch
   is what causes the page to briefly look "correct" at one width and
   then hug the edges with zero side margin at a slightly narrower one
   (e.g. when a DevTools panel eats into the viewport). Forcing our own
   max-width/padding here means it no longer depends on the theme's
   wrapper behavior at any width. */
.cart-page__wrap {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  /* opacity-only (never transform) so this can never turn into a
     transformed ancestor and break the summary panel's position:sticky */
  animation: cartPageFadeIn .45s ease both;
}
@keyframes cartPageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cart-page__wrap { animation: none; }
}

.cart-page__title {
  font-family: var(--cd-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 28px;
  margin: 28px 0 22px;
  color: var(--cd-ink);
}
.cart-page__title::before {
  content: "\1F9E9";
  margin-right: 10px;
  display: inline-block;
  transform: rotate(-8deg);
}

/* ---------- Two-column grid: items + sticky summary ---------- */
.cart-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 990px) {
  .cart-page__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
  }
}

.cart-page__items {
  min-width: 0;
  /* Container query context for the bundle card below: its own 2-column
     layout needs to react to the ACTUAL width of this column, not the
     page's overall viewport. A media query alone was wrong here because
     the order-summary sidebar can leave this column narrower than 640px
     even on a wide desktop window, which is exactly what was making the
     bundle card's photo+info layout collapse into an oversized stacked
     block on screens that otherwise "count" as desktop. */
  container-type: inline-size;
  container-name: cart-items-col;
}

.cart-page__summary {
  background: #fff;
  border: 2.5px solid var(--cd-ink);
  border-radius: 18px;
  padding: 20px;
  font-family: var(--cd-body);
  box-shadow: 0 5px 0 rgba(0,0,0,.9);
}

@media (min-width: 990px) {
  .cart-page__summary {
    position: sticky;
    top: 24px;
  }
}

/* ---------- Free-shipping / savings banner (full width on page) ---------- */
.cart__template .cd-ship {
  margin: 0 0 20px;
  padding: 14px 16px;
}
.cart__template .cd-ship .cd-shipt { font-size: 15px; }

/* ---------- Line-item cards: roomier grid layout on desktop ---------- */
.cart__template .cart__items { display: flex; flex-direction: column; gap: 14px; }

.cart__template .cart__items__row.cd-card {
  display: block !important;
  padding: 16px;
  border-radius: 16px;
  border: 2.5px solid var(--cd-ink) !important;
  outline: none !important;
  box-shadow: 0 5px 0 rgba(0,0,0,.9) !important;
}

.cart__template .cd-prod {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  align-items: center;
  gap: 16px;
}

@media (max-width: 599px) {
  .cart__template .cd-prod {
    grid-template-columns: 76px 1fr;
    grid-template-areas:
      "thumb info"
      "steps steps"
      "price trash";
    row-gap: 10px;
  }
  .cart__template .cd-prod > .cd-thumb { grid-area: thumb; }
  .cart__template .cd-prod > .cd-pmid { grid-area: info; }
  .cart__template .cd-prod > .cd-step-row { grid-area: steps; }
  .cart__template .cd-prod > .cd-priceblk { grid-area: price; }
  .cart__template .cd-prod > .cd-trash { grid-area: trash; justify-self: end; }
}

.cart__template .cd-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--cd-ink);
  display: block;
}
@media (max-width: 599px) {
  .cart__template .cd-thumb { width: 76px; height: 76px; }
}

.cart__template .cd-pname {
  font-family: var(--cd-heading);
  font-weight: 700;
  font-size: 16px;
}
.cart__template .cd-pname a { color: var(--cd-ink); text-decoration: none; }
.cart__template .cd-sublabel { font-family: var(--cd-body); font-size: 12.5px; color: #666; }

.cart__template .cd-step-row { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.cart__template .cd-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--cd-ink);
  border-radius: 999px;
  padding: 6px 12px;
}
.cart__template .cd-step input { border: none; width: 28px; text-align: center; font-family: var(--cd-body); font-weight: 700; }
.cart__template .cd-step button {
  font-family: var(--cd-body);
  font-size: 17px;
  line-height: 1;
  width: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.cart__template .cd-priceblk { text-align: right; font-family: var(--cd-body); }
.cart__template .cd-was { color: #aab; text-decoration: line-through; margin-right: 6px; font-size: 13px; }
.cart__template .cd-now { color: var(--cd-ink); font-weight: 800; font-size: 17px; }

.cart__template .cd-trash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 25px;
  color: #000;
    width: 34px;
  height: 34px;
  transition: background .15s ease;
}
.cart__template .cd-trash:hover { background: #f2f2f2; }

/* ---------- Bundle-upgrade-ladder card ("Make it a 6-pack"), page version ----------
   Rendered by snippets/cart-page-bundle-card.liquid, cloned from the
   drawer's cart-bundle-card.liquid so the drawer's identical card (still
   built by the untouched original file) is never affected.

   The drawer forces this to stack below the line item via
   `.cart__drawer .cart__items__row.cd-card { display:block !important; }`;
   that same rule is replicated above for `.cart__template`, which is what
   makes the divider + card sit UNDER the item instead of squeezing beside
   it. Everything below restyles the card itself: a single eyebrow badge
   instead of three separate "it's a 6-pack" mentions, a proper two-column
   layout on wider screens, and a cleaner checklist/price block. All the
   functional classes the shared JS relies on (data-cbu-card, data-cbu-qv,
   .cd-qv, .cd-scard, .cd-btn-red, .cd-upprice) are only restyled here,
   never renamed, so quick-view / upgrade keep working untouched. */
.cart__template hr.cd-divide {
  margin: 20px 0 18px;
  border: none;
  border-top: 1.5px dashed #ddd;
}

.cart__template .cpb-card {
  background: #fffaf0;
  border-radius: 16px;
  padding: 16px;
  margin: 0 -16px;
}

.cart__template .cpb-top {
  margin-bottom: 12px;
}

.cart__template .cd-up-label.cpb-eyebrow {
  display: inline-flex !important;
  align-items: center;
  font-family: var(--cd-heading);
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #fff !important;
  background: var(--cd-ink) !important;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 0 !important;
  line-height: 1.4;
}

.cart__template .cpb-body {
  display: block;
}

/* Reacts to the actual rendered width of .cart-page__items (see its
   container-type above), not the page's overall viewport — so this
   switches to the side-by-side layout exactly when there's genuinely
   room for it, whether or not the order-summary sidebar is eating into
   this column at a given window size. */
@container cart-items-col (min-width: 480px) {
  .cart__template .cpb-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    align-items: center;
  }
}
/* Fallback for the rare browser without container query support: the old
   viewport-based switch, so the layout is never worse than it was before. */
@supports not (container-type: inline-size) {
  @media (min-width: 640px) {
    .cart__template .cpb-body {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 22px;
      align-items: center;
    }
  }
}

/* Fixed aspect-ratio at every width (rather than switching to height:100%
   on desktop) so the box always has a real, predictable size and the photo
   can never balloon to fill unrelated leftover space or get stretched.
   Capped max-width in the stacked (single-column) state so the photo reads
   as a card thumbnail instead of a dominant full-bleed hero banner. */
.cart__template .cpb-media .cd-qv {
  aspect-ratio: 4 / 3 !important;
  border-radius: 14px;
  border: 2px solid var(--cd-ink);
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@container cart-items-col (min-width: 480px) {
  .cart__template .cpb-media .cd-qv { max-width: none; }
}
@supports not (container-type: inline-size) {
  @media (min-width: 640px) {
    .cart__template .cpb-media .cd-qv { max-width: none; }
  }
}

.cart__template .cpb-info {
  margin-top: 14px;
}
@container cart-items-col (min-width: 480px) {
  .cart__template .cpb-info { margin-top: 0; }
}
@supports not (container-type: inline-size) {
  @media (min-width: 640px) {
    .cart__template .cpb-info { margin-top: 0; }
  }
}

.cart__template .cd-up-top { margin-bottom: 2px; }

.cart__template .cd-bname {
  font-family: var(--cd-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--cd-ink);
}

.cart__template .cd-bdesc {
  font-family: var(--cd-body);
  font-size: 13.5px;
  color: #555;
  margin: 4px 0 14px;
}
.cart__template .cd-bdesc .cd-pack { font-weight: 700; color: var(--cd-ink); }

.cart__template .cd-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.cart__template .cd-scard {
  flex: 1 1 30%;
  min-width: 92px;
  border: 2px solid #ececec;
  border-radius: 12px;
  padding: 8px 6px 9px;
  text-align: center;
  background: #fff;
}
.cart__template .cd-scard.cd-have {
  border-color: var(--cd-gogreen);
  background: #f3fbf6;
}
.cart__template .cd-scard .cd-pic {
  height: 62px;
  border-radius: 8px;
  margin-bottom: 6px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}
.cart__template .cd-scard .cd-nm {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--cd-heading);
}
.cart__template .cd-scard .cd-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 8px;
  background: transparent;
  color: #9aa0a8;
  border: 1px solid #d9dde1;
}
.cart__template .cd-scard.cd-have .cd-badge {
  color: #1f7a4d;
  border-color: var(--cd-gogreen);
  background: #e6f6ec;
}

.cart__template .cd-btn-red {
  width: 100%;
  max-width: 360px;
  margin: 4px 0 12px;
  display: block;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.cart__template .cpb-card .cd-btn-red:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.cart__template .cpb-card .cd-btn-red:active {
  transform: translateY(1px);
}

.cart__template .cd-upprice {
  font-family: var(--cd-body);
  font-size: 14px;
}
.cart__template .cd-upprice .cd-now {
  font-family: var(--cd-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--cd-ink);
}
.cart__template .cd-upprice .cd-was {
  color: #aab;
  text-decoration: line-through;
  margin-right: 6px;
  font-size: 13px;
}

.cart__template .cd-up-ship {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

/* ---------- Order summary panel ---------- */
.cart-page__summary-head {
  margin-bottom: 14px;
}
.cart-page__summary-eyebrow {
  font-family: var(--cd-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #8a8a8a;
}

.cart-page__summary .cart__footer__shipping { margin-bottom: 14px; }

.cart-page__summary .cart__page__shipping { margin-bottom: 10px; }

.cart-page__summary .page__footer__subtotal { margin-bottom: 4px; }

.cart-page__summary .cart__footer__label,
.cart-page__summary .cart__footer__value {
  font-family: var(--cd-body);
  font-size: 14px;
}

.cart-page__summary p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 8px 0;
}

.cart-page__summary .cart__footer__label { color: #444; }
.cart-page__summary .cart__footer__value,
.cart-page__summary .cart__footer__final {
  font-weight: 800;
  font-family: var(--cd-heading);
}

/* Divider + a visually heavier final total row, so the running per-line
   breakdown above (savings, discounts) reads as detail and this reads as
   the number that matters. */
.cart-page__summary-divide {
  border: none;
  border-top: 1.5px solid #ececec;
  margin: 14px 0 10px;
}

.cart-page__summary-total {
  margin: 0 0 6px !important;
}
.cart-page__summary-total .cart__footer__label {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cd-ink);
}
.cart-page__summary-total .cart__footer__value {
  font-size: 21px;
  color: var(--cd-ink);
}

.cart-page__summary .cart__footer__small {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: -4px;
}

.cart-page__summary .checkout__button {
  width: 100%;
  border-radius: 999px;
  font-family: var(--cd-heading);
  font-size: 15px;
  letter-spacing: .4px;
  box-shadow: 0 4px 0 rgba(0,0,0,.85);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 14px;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.cart-page__summary .checkout__button::after {
  content: " \2192";
  display: inline-block;
  transition: transform .15s ease;
}

.cart-page__summary .checkout__button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0,0,0,.85);
}
.cart-page__summary .checkout__button:hover::after { transform: translateX(3px); }
.cart-page__summary .checkout__button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0,0,0,.85);
}

.cart-page__summary .cart__footer__update {
  text-align: center;
  margin-top: 10px;
}

.cart-page__summary .cd-savings-line {
  background: #e6f6ec;
  border: 2px solid var(--cd-gogreen);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.cart-page__summary .cd-savings-line span { font-family: var(--cd-body); }
.cart-page__summary .cd-savings-text { font-weight: 700; color: #1f7a4d; font-size: 12.5px; }

/* Shipping estimator accordion re-skinned for the page card */
.cart-page__summary .drawer__bottom__shipping.drawer__accordion {
  border-top: 1.5px solid #ececec;
  padding-top: 12px;
  margin-top: 4px;
}
.cart-page__summary .accordion__title {
  font-family: var(--cd-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: none;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Cross-sell / upsell section ----------
   The source recommendations section (sections/products-recommendation.liquid)
   ships as a slick-carousel, but its markup is injected here via fetch()
   AFTER page load, so the theme's slick.js never runs its init pass on it —
   that's what was rendering as one giant unstyled stacked card. The JS in
   cart.liquid rebuilds the fetched items into this plain, dependency-free
   flex/scroll track instead, so it works with zero external JS library. */
/* .cart-page__upsell {
  margin: 48px 0 8px;
}

.cart-page__upsell-title {
  font-family: var(--cd-heading);
}

.cart-page__upsell-track {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.cart-page__upsell-track::-webkit-scrollbar { height: 6px; }
.cart-page__upsell-track::-webkit-scrollbar-track { background: transparent; }
.cart-page__upsell-track::-webkit-scrollbar-thumb { background: #ddd; border-radius: 999px; } */


.cart-page__upsell {
  margin: 42px 0 30px;
}

.cart-page__upsell-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;

  overflow-x: auto;
  scroll-snap-type: x proximity;

  padding: 4px 2px 8px;

  /* Hide ugly native scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cart-page__upsell-track::-webkit-scrollbar {
  display: none;
}

/* Cart recommendations only — hide product descriptions */
.cart-page__upsell-cell .md\:op-block.op-hidden,
.cart-page__upsell-cell .mobile-desc {
  display: none !important;
}

.cart-page__upsell-cell {
  flex: 0 0 calc(25% - 12px);
  min-width: 210px;
  scroll-snap-align: start;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}

/*  */

.cart-page__upsell-cell:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 16px rgba(0,0,0,.1); */
}
@media (max-width: 989px) {
  .cart-page__upsell-cell { flex-basis: calc(33.333% - 11px); }
}
@media (max-width: 699px) {
  .cart-page__upsell-cell { flex-basis: calc(58% - 7px); min-width: 180px; }
}

.cart-page__upsell-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.cart-page__upsell-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid var(--cd-ink);
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.cart-page__upsell-arrow:hover { background: #f2f2f2; transform: scale(1.08); }
.cart-page__upsell-arrow:active { transform: scale(0.94); }

.cart-page__upsell[data-loading] { min-height: 1px; }

/* ---------- Continue-browsing / heading row ---------- */
.cart__template .cart__heading__back {
  margin-bottom: 12px;
}
.cart__template .cart__return {
  font-family: var(--cd-body);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  color: var(--cd-ink);
  text-decoration: none;
}

/* ============================================================
   Empty-cart state -- /cart page only (cart-page-empty.liquid).
   Every rule is scoped under .cart-page__empty so it can never
   affect the drawer's own empty state, which reuses the same
   ce-*/cd-* class names from its own untouched cart-empty.liquid.
   Self-contained: does not rely on that file's inline <style>.
   ============================================================ */

.cart-page__empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 20px 60px;
  text-align: center;
}

.cart-page__empty-title { text-align: center; margin-bottom: 6px; }

.cart-page__empty-label {
  font-family: var(--cd-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5c6b73;
  margin: 0 0 18px;
}

.cart-page__empty-card.ce-card {
  background: #fff;
  border: 2.5px solid var(--cd-ink);
  border-radius: 20px;
  padding: 0;
  text-align: left;
  font-family: var(--cd-body);
  overflow: hidden;
  margin: 0;
}

@media (min-width: 700px) {
  .cart-page__empty-card.ce-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    align-items: stretch;
  }
}

.cart-page__empty-media { position: relative; }

.cart-page__empty-qv.cd-qv {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  height: 100%;
  min-height: 220px;
}

@media (min-width: 700px) {
  .cart-page__empty-qv.cd-qv { aspect-ratio: auto; }
}

.cart-page__empty .cd-disc {
  position: absolute; left: 14px; top: 14px;
  background: var(--cd-red); color: #fff;
  font-family: var(--cd-heading); font-weight: 700; font-size: 12px;
  letter-spacing: .4px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 2px 5px rgba(0,0,0,.18);
}

.cart-page__empty .cd-qvbtn {
  position: absolute; right: 14px; top: 14px;
  width: 36px; height: 36px; border-radius: 999px;
  background: #fff; border: 2px solid var(--cd-ink);
  font-size: 15px; cursor: pointer;
}

.cart-page__empty-details {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
}

.cart-page__empty .ce-bname {
  font-family: var(--cd-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
}

.cart-page__empty .ce-btag {
  font-size: 13px; font-weight: 700; font-style: italic;
  color: var(--cd-red); margin-top: 6px;
}

.cart-page__empty .ce-slots {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.cart-page__empty .cd-scard {
  flex: 1 1 100px;
  min-width: 90px;
  border: 2px solid #ececec;
  border-radius: 12px;
  padding: 8px 6px 9px;
  text-align: center;
  background: #fff;
}

.cart-page__empty .cd-scard .cd-pic {
  height: 64px;
  border-radius: 8px;
  margin-bottom: 6px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.cart-page__empty .cd-scard .cd-nm {
  font-size: 11px; font-weight: 700; line-height: 1.2;
  font-family: var(--cd-heading);
}

.cart-page__empty .cd-scard .cd-badge {
  display: inline-block; margin-top: 6px;
  font-size: 9.5px; font-weight: 700;
  border-radius: 999px; padding: 2px 8px;
  background: transparent; color: #9aa0a8; border: 1px solid #d9dde1;
}

.cart-page__empty .ce-btn-red {
  width: 100%;
  max-width: 340px;
  background: var(--cd-red); color: #fff;
  border: 2px solid var(--cd-ink);
  border-radius: 999px;
  padding: 14px 18px;
  font-family: var(--cd-heading);
  font-size: 15px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-top: auto;
}
.cart-page__empty .ce-btn-red:disabled { opacity: .7; cursor: not-allowed; }
.cart-page__empty .ce-btn-was { font-size: 12.5px; font-weight: 700; text-decoration: line-through; opacity: .75; }

.cart-page__empty .ce-price {
  text-align: left; margin-top: 12px; font-size: 13px; color: #4a4a4a; font-weight: 600;
}

.cart-page__empty .ce-ship {
  display: flex; align-items: center; gap: 6px;
  color: var(--cd-gogreen); font-weight: 700; font-size: 12px; margin-top: 8px;
}

.cart-page__empty-continue { margin-top: 20px; text-align: center; }
.cart-page__empty-continue .cart__return {
  font-family: var(--cd-body); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; color: var(--cd-ink); text-decoration: none;
}


/* ============================================================
   Cart PAGE Quick View Modal
   Page-only modal markup used by shared cbuOpenPuzzleQV /
   cbuOpenBundleQV JavaScript.
   ============================================================ */

.cart-page-qv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cart-page-qv-overlay.is-open {
  display: flex;
}

.cart-page-qv-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 2.5px solid #000;
  border-radius: 18px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.9);
}


/* ============================================================
   Cart Page Bundle Upgrade — Compact Hero
   ============================================================ */

.cart__template .cpb-media {
  width: 100%;
}

.cart__template .cpb-media .cd-qv {
  width: 100%;
  height: 230px;
  min-height: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

@media (max-width: 749px) {
  .cart__template .cpb-media .cd-qv {
    height: 190px;
  }
}


/* ============================================================
   Cart Page Bundle Upgrade — Desktop Two Column Layout
   ============================================================ */

@media (min-width: 990px) {
  .cart__template .cpb-body {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 18px;
    align-items: start;
  }

  .cart__template .cpb-media {
    width: 100%;
    min-width: 0;
  }

  .cart__template .cpb-media .cd-qv {
    height: 220px;
  }

  .cart__template .cpb-info {
    min-width: 0;
  }
}


/* ============================================================
   Cart Page Bundle — Puzzle Card Polish
   ============================================================ */

.cart__template .cpb-info .cd-scard {
  border: 1.5px solid #dedede;
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease;
}

.cart__template .cpb-info .cd-scard:not(.cd-have):hover {
  transform: translateY(-2px);
  border-color: #111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cart__template .cpb-info .cd-pic-btn {
  cursor: pointer;
}

.cart__template .cpb-info .cd-scard.cd-have {
  border-color: #239b56;
  background: #f4fbf6;
}

.cart__template .cpb-info .cd-nm {
  margin-top: 5px;
  font-weight: 700;
  line-height: 1.2;
}

.cart__template .cpb-info .cd-badge {
  margin-top: 4px;
}

.cart__template .cpb-info .cd-scard:not(.cd-have) .cd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

/* ============================================================
   Cart Page Bundle — CTA & Price Hierarchy
   ============================================================ */

.cart__template .cpb-info .cd-btn-red {
  width: 100%;
  margin-top: 14px;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cart__template .cpb-info .cd-upprice {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 11px;
  line-height: 1;
}

.cart__template .cpb-info .cd-upprice .cd-was {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.45;
  text-decoration: line-through;
}

.cart__template .cpb-info .cd-upprice .cd-now {
  font-size: 20px;
  font-weight: 900;
  color: #111;
}

.cart__template .cpb-info .cd-up-ship {
  margin-top: 7px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.65;
}

/* Cart Page — Order Summary spacing */
.cart__template .cart-page__summary-head {
  margin-bottom: 8px !important;
}

.cart__template .cart-page__summary > .cart__footer__shipping {
  margin: 0 0 12px !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

.cart__template .cart-page__summary .cart-page__shipping-accordion {
  margin: 0 !important;
}

.cart__template .cart-page__summary .accordion__title {
  margin: 0 !important;
}

.cart__template .cart-page__summary .cart__footer__total {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* =========================================================
   Cart Page — Final Order Summary Vertical Layout
   ========================================================= */

.cart__template .cart-page__summary {
  display: flex !important;
  flex-direction: column !important;
}

/* ORDER SUMMARY heading */
.cart__template .cart-page__summary-head {
  margin: 0 0 8px !important;
}

/* Shipping estimator */
.cart__template .cart-page__summary > .cart__footer__shipping {
  margin: 0 0 14px !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Total area containing savings, subtotal and checkout */
.cart__template .cart-page__summary > .cart__footer__total {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  height: auto !important;
  min-height: 0 !important;
}

/* Savings / free-shipping banner */
.cart__template .cart-page__summary .cart__page__shipping {
  position: static !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  transform: none !important;
}

/* Subtotal */
.cart__template .cart-page__summary .page__footer__subtotal {
  margin: 0 !important;
}

/* Divider */
.cart__template .cart-page__summary .cart-page__summary-divider {
  margin: 12px 0 !important;
}

/* Shipping/tax helper text */
.cart__template .cart-page__summary .cart__footer__small {
  margin: 5px 0 14px !important;
}

/* Checkout */
.cart__template .cart-page__summary .cart__footer__checkout {
  margin: 0 !important;
}

/* ==========================================================
   CART PAGE — FINAL ORDER SUMMARY UI
   Page only. Does not affect cart drawer.
   ========================================================== */

.cart__template .cart-page__summary {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Order Summary heading */
.cart__template .cart-page__summary-head {
  margin: 0 0 10px !important;
}

/* Shipping estimator */
.cart__template .cart-page__summary > .cart__footer__shipping {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Pull total content up to remove theme's reserved internal space */
.cart__template .cart-page__summary > .cart__footer__total {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  margin: -72px 0 0 !important;
  padding: 0 !important;
}

/* Savings banner */
.cart__template .cart-page__summary .cart__page__shipping {
  position: relative !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  transform: none !important;
}

/* Divider */
.cart__template .cart-page__summary-divider {
  margin: 12px 0 !important;
}

/* Subtotal */
.cart__template .cart-page__summary .page__footer__subtotal {
  margin: 0 !important;
}

/* Small checkout note */
.cart__template .cart-page__summary .cart__footer__small {
  margin: 5px 0 14px !important;
}

/* Checkout button */
.cart__template .cart-page__summary .cart__footer__checkout {
  margin: 0 !important;
}

/* ==========================================================
   CART PAGE — Shipping Estimator UI
   Visual styling only — preserve native accordion behaviour
   ========================================================== */

.cart__template .cart-page__summary .cart-page__shipping-accordion {
  margin: 4px 0 14px !important;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
}

/* Keep theme's native accordion layout/click behaviour */
.cart__template .cart-page__summary
.cart-page__shipping-accordion .accordion__title {
  width: 100%;
  min-height: 44px;
  margin: 0 !important;
  padding: 11px 14px !important;
  background: #fafafa;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

/* ==========================================================
   Cart Page Recommendations — Compact Title + Price
   ========================================================== */

/* Product title */
.cart__template .cart-page__upsell-cell
.product__grid__title__wrapper > p {
  font-size: 18px !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  margin: 0 !important;

  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;

  min-height: 39px;
  max-height: 39px;
}

/* Main content area */
.cart__template .cart-page__upsell-cell
.card-content-wrap {
  line-height: 1.2;
}

/* Keep title/price area compact */
.cart__template .cart-page__upsell-cell
.product__grid__title__wrapper {
  min-height: 42px;
}

/* Price text inside recommendation cards */
.cart__template .cart-page__upsell-cell
[class*="op-text-end"] {
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

/* Compare-at price */
.cart__template .cart-page__upsell-cell del,
.cart__template .cart-page__upsell-cell s {
  font-size: 12px !important;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 699px) {
  .cart__template .cart-page__upsell-cell
  .product__grid__title__wrapper > p {
    font-size: 16px !important;
    min-height: 35px;
    max-height: 35px;
  }
}


.cart__template .cart-page__upsell-cell
.op-absolute.op-left-1.op-top-2:has(.product_badge_label) {
  top: 6px !important;
  left: 6px !important;
}


/* =========================================================
   CART PAGE SHIPPING — CLEAN CLICKABLE TRIGGER
   ========================================================= */

.cart__template .cart-page__shipping-accordion {
  position: relative !important;
  margin: 0 0 14px !important;
}

/* Full clickable row */
.cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger] {
  position: relative !important;
  z-index: 20 !important;

  display: flex !important;
  align-items: center !important;

  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;
  padding: 0 42px 0 14px !important;

  border: 0 !important;
  background: transparent !important;

  cursor: pointer !important;
  pointer-events: auto !important;

  font: inherit;
  font-weight: 700;
  line-height: 1.2 !important;
  text-align: left;
}

/* Prevent pseudo-elements from blocking click */
.cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger]::before,
.cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger]::after {
  pointer-events: none !important;
}

/* =========================================
   SHIPPING — FINAL UI POLISH
   ========================================= */

/* Remove extra top space */
.cart__template .cart-page__summary .cart__footer__shipping {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.cart__template .cart-page__shipping-accordion {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Compact + vertically centered trigger */
.cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger] {
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 42px 0 14px !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
}

/* Arrow */
/* .cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger]::after {
  content: "›" !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;

  transform: translateY(-50%) rotate(0deg) !important;
  transform-origin: center !important;

  font-size: 22px !important;
  line-height: 1 !important;
  pointer-events: none !important;

  transition: transform 0.2s ease !important;
} */

/* OPEN = arrow rotates downward */
.cart__template
.cart-page__shipping-accordion
button[data-cart-page-shipping-trigger][aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(130deg) !important;
}