/** Shopify CDN: Minification failed

Line 625:0 Unexpected "}"

**/
.drawer {
  position: fixed;
  z-index: 12000;
  left: 0;
  top: 0;
  width: 100vw;
  height: var(--cart-vh, 100vh);
  max-height: var(--cart-vh, 100vh);
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  transition: none;
  overflow: hidden;
  visibility: hidden; /* Prevent overlay from capturing scroll/clicks when closed */
  pointer-events: none;
  opacity: 0; /* use opacity toggle to avoid Safari first-paint delay */
  will-change: opacity;
  contain: layout paint;
}

.drawer.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

/* Hard-disable all animations/transitions/scroll smoothing inside the drawer to prevent any slide on resize */
.drawer,
.drawer *,
.drawer *::before,
.drawer *::after {
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* Strengthen overflow rules for both cart drawer and menu drawer */
body.overflow-hidden,
body.overflow-hidden-mobile,
body.overflow-hidden-tablet,
body.overflow-hidden-desktop {
  overflow: hidden !important;
}

/* Dedicated scroll lock for cart drawer that won't interfere with header stickiness */
/* Keep sticky header working: don't hide overflow on html, only on body */
html.cart-open, body.cart-open {
  overscroll-behavior: none;
}

.drawer__inner {
  z-index: 12001;
  position: relative;
  height: var(--cart-vh, 100vh);
  max-height: var(--cart-vh, 100vh);
  min-height: 0; /* allow children to shrink on short viewports */
  width: min(30rem, calc(100vw - 1rem));
  max-width: 100vw;
  padding: 0 1.2rem; /* slightly tighter side padding */
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: none;
  transition: none;
  background: white;
  /* Remove compositor hints to avoid smoothing or implicit animations during resize */
  will-change: auto;
}

/* Ensure drawer always fits within the viewport on all screens */
cart-drawer .drawer__inner {
  width: min(30rem, calc(100vw - 1rem));
  max-width: 100vw;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: none;
}

/* When active, allow the host to receive events */
cart-drawer.active {
  pointer-events: auto;
  visibility: visible;
}

.drawer__header {
  position: relative;
  padding: 0.8rem 0; /* tighter top spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0.6rem 0 0.1rem; /* keep text lowered but reduce space below */
}

/* Product titles in cart drawer: 500 weight to match product page */
.cart-item__name {
  font-weight: 500 !important;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0);
  position: absolute;
  top: 10px;
  right: -10px;
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.drawer__close:focus,
.drawer__close:focus-visible,
.drawer__close:active {
  outline: none !important;
  box-shadow: none !important;
}

.cart-drawer__warnings .drawer__close {
  top: 0.8rem; /* match header's top padding for vertical alignment */
  right: calc(0.5rem + 1px); /* nudge 1px left from previous position */
}

.drawer__close .svg-wrapper {
  height: 2rem;
  width: 2rem;
}

/* Cart drawer header close icon adjustments: use thin-stroke small SVG aligned inline */
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__header .drawer__close {
  position: static;
  top: auto;
  right: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  line-height: 1;
  margin-right: -0.625rem; /* ~10px right total; +2px from previous */
}

.drawer__header .drawer__close .svg-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Thin stroke to approximate Inter 200 weight appearance */
.drawer__header .drawer__close svg {
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(4px); /* nudge down a few pixels */
}

/* Apply thinner stroke to the path inside the small close icon */
.drawer__header .drawer__close svg path {
  stroke-width: 0.6;
}

/* Ensure the close icon remains thin in empty-cart state as well */
cart-drawer .drawer__inner-empty .drawer__close svg {
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(4px);
}
cart-drawer .drawer__inner-empty .drawer__close svg path {
  stroke-width: 0.6 !important;
}
/* Match header close button box sizing in empty state */
cart-drawer .drawer__inner-empty .drawer__close {
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.drawer__contents {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer .drawer__footer {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
  /* Increase height and nudge content slightly closer to the bottom */
  padding-top: 1.2rem;
  padding-bottom: calc(env(safe-area-inset-bottom) + 20px); /* account for iOS safe area to keep spacing consistent */
  flex-shrink: 0;
  margin-top: auto;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 0.6rem; /* tighter spacing above totals */
}

/* Match empty-cart Continue Shopping button size to product Add to Bag */
cart-drawer .drawer__inner-empty .button {
  height: 3.6rem !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
}

cart-drawer {
  /* Fixed to viewport so it always opens pinned to the current view */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--cart-vh, 100vh);
  max-height: var(--cart-vh, 100vh);
  z-index: 12000;
  overflow: hidden;
  /* Prevent interaction when closed so background can receive events normally */
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer__overlay {
  z-index: 12000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  touch-action: none; /* prevent iOS rubber-banding during lock */
  cursor: default;
}

/* Ensure overlay captures clicks across the entire viewport including under sticky header */
cart-drawer.active .cart-drawer__overlay {
  pointer-events: auto;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  /* Keep items clear of footer without adding large extra whitespace */
  padding-bottom: calc(env(safe-area-inset-bottom) + 1.2rem);
}

/* Ensure scrollable area fills the remaining space inside the drawer */
.drawer__contents {
  overflow: hidden;
}
.drawer__cart-items-wrapper {
  overflow-y: auto;
  max-height: none;
  /* Reduce the top and bottom mask effect by ensuring no extra padding/margins overlap the scroll area */
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

/* Hide scrollbar inside the cart drawer scroller while preserving scrollability */
.cart-drawer .drawer__cart-items-wrapper {
  -ms-overflow-style: none; /* IE and old Edge */
  scrollbar-width: none; /* Firefox */
}
.cart-drawer .drawer__cart-items-wrapper::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
  width: 0;
  height: 0;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: none !important; /* hide empty header row to pull items up */
  width: 100%;
}

cart-drawer-items {
  overflow: auto;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: auto;
  }

  .drawer__inner {
    overflow: hidden;
  }
}

.cart-drawer .cart-item {
  display: grid;
  /* Keep media column a fixed size so content stays consistent across breakpoints */
  grid-template-columns: 10.5rem 1fr auto auto;
  grid-template-rows: repeat(2, auto);
  gap: 1rem !important;
  margin-bottom: 0;
}

/* Override ALL inherited mobile cart styles to maintain consistent layout */
@media screen and (max-width: 749px) {
  .cart-drawer .cart-item {
    display: grid !important;
    grid-template-columns: 10.5rem 1fr auto auto !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 1rem !important;
    margin-bottom: 0 !important;
  }
  
  .cart-drawer .cart-item__details {
    grid-column: 2 / 4 !important;
  }
  
  .cart-drawer .cart-item__quantity {
    grid-column: 2 / 5 !important;
  }
  
  .cart-drawer .cart-item__quantity-wrapper {
    flex-wrap: nowrap !important;
  }
  
  .cart-drawer .cart-item__totals {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
  }
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 0.rem; /* tighter spacing between items */
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
  width: 10.5rem;
  min-width: 10.5rem;
  overflow: visible;
}

.cart-drawer .cart-item__image {
  width: 10.5rem;
  height: auto;
  max-width: none;
  background: transparent;
  display: block;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0; /* pull first row closer */
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading__spinner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.cart-drawer .cart-items td {
  padding-top: 0.8rem; /* reduce vertical padding */
}

/* Keep first row padding consistent with others to avoid visual nudge */
/* No special-case padding for first row; keep consistent with others */

/* Ensure consistent quantity button positioning for first item */
/* No special-case margin for first row quantity; use the default rule */

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

/* Ensure error messages inside details align and space under variant line */
.cart-drawer .cart-item__details .cart-item__error {
  margin-top: 0.8rem !important;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 2rem;
  transition: opacity 0.15s ease;
}

/* Prevent price from disappearing during updates */
.cart-drawer .cart-item__price-wrapper {
  min-height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.15s ease;
}

.cart-drawer .cart-item__price-wrapper .price {
  transition: all 0.15s ease;
  opacity: 1;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
  margin-top: calc(6.9rem);
  margin-left: -2px;
}

/* Lay out quantity controls + trash in one row and push trash to far right */
.cart-drawer .cart-item__quantity-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
}
.cart-drawer .cart-item__quantity-wrapper cart-remove-button {
  margin-left: auto !important;
  margin-top: 0.7rem !important; /* nudge 1–2rem down */
}

/* Removed mobile breakpoint - keeping consistent layout across all screen sizes */

/* Cart drawer trash can styling - 50% smaller and right-aligned */
.cart-drawer cart-remove-button,
.cart-drawer .cart-remove-button { /* target the class on the button as well */
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  margin-left: auto !important;
  width: 100% !important;
}

.cart-drawer cart-remove-button .button,
.cart-drawer .cart-remove-button { /* the button itself has this class */
  background: transparent !important;
  border: none !important;
  min-width: 1.8rem !important;   /* force box size ~50% smaller */
  min-height: 1.8rem !important;
  width: 1.8rem !important;
  height: 1.8rem !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;
}

.cart-drawer cart-remove-button .button .svg-wrapper,
.cart-drawer .cart-remove-button .svg-wrapper {
  width: 1.2rem !important;
  height: 1.2rem !important;
  display: inline-flex !important;
}

.cart-drawer cart-remove-button .icon-remove,
.cart-drawer cart-remove-button svg,
.cart-drawer .cart-remove-button .icon-remove,
.cart-drawer .cart-remove-button svg {
  width: 1.2rem !important;
  height: 1.2rem !important;
}

.cart-drawer cart-remove-button .button:before,
.cart-drawer cart-remove-button .button:after {
  content: none;
}

.cart-drawer cart-remove-button .button:not([disabled]):hover,
.cart-drawer cart-remove-button .button:focus,
.cart-drawer cart-remove-button .button:focus-visible,
.cart-drawer cart-remove-button .button:active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}
}

.cart-drawer__footer > * + * {
  margin-top: 0; /* keep compact */
}

.cart-drawer .totals {
  justify-content: space-between;
  margin-top: 0.4rem; /* nudge totals slightly lower without moving CTA */
  margin-bottom: 18px; /* higher lift; px avoids breakpoint jump */
  /* Slight horizontal inset for alignment */
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  transition: none; /* avoid any animated shift during resize */
}

/* Tiny additional nudge for label only (not price) — move left by 0.1rem */
.cart-drawer .totals .totals__total {
  padding-left: 0;
  margin-left: -0.1rem;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
  margin-top: 18px; /* keep larger, constant separation */
  /* Match product Add to Bag sizing format */
  height: 3.6rem !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  text-transform: lowercase !important; /* force lowercase label */
  color: #ffffff !important; /* keep text white */
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 1.8rem;
  margin-left: 3px;
  color: #BB1A1A !important;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 1.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 3px;
    color: #BB1A1A !important;
  }
}

/* Apply memory-based styling: white background with black text */
.drawer__inner {
  background: white !important;
  color: black !important;
}

.cart-drawer__footer {
  background: white !important;
  color: black !important;
}

.drawer__header {
  background: white !important;
  color: black !important;
}

.cart__checkout-button {
  background-color: #2235AF !important; /* match product CTA */
  color: #ffffff !important;
  border: none !important;
}

.cart__checkout-button:hover,
.cart__checkout-button:focus,
.cart__checkout-button:active {
  background-color: #232C60 !important; /* match product CTA hover */
  color: #ffffff !important;
}

.button {
  background-color: #2235AF !important;
  color: #ffffff !important;
  border: none !important;
}

.button:hover,
.button:focus,
.button:active {
  background-color: #232C60 !important;
  color: #ffffff !important;
}

/* Ensure visited state does not inherit black from global link rules */
.button:visited {
  color: #ffffff !important;
}

/* Extra specificity for the empty-cart Continue shopping link: keep text white in link/visited */
cart-drawer .drawer__inner-empty a.button:link,
cart-drawer .drawer__inner-empty a.button:visited {
  color: #ffffff !important;
}

/* Restore hover/focus/active background even for visited links */
cart-drawer .drawer__inner-empty a.button:hover,
cart-drawer .drawer__inner-empty a.button:focus,
cart-drawer .drawer__inner-empty a.button:active {
  background-color: #232C60 !important;
  color: #ffffff !important;
}

/* Ensure quantity buttons are always clickable in cart drawer */
.cart-drawer .quantity__button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10 !important;
  transition: opacity 0.2s ease, background-color 0.2s ease !important;
}

.cart-drawer .quantity__button:hover {
  background-color: #FBFBFB !important;
}

/* Visual feedback for processing buttons */
.cart-drawer .quantity__button[style*="opacity: 0.6"] {
  cursor: wait !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Prevent quantity buttons from being disabled during cart updates */
.cart-drawer.cart__items--disabled .quantity__button,
.cart-drawer .cart__items--disabled .quantity__button,
.cart-drawer .cart-item--disabled .quantity__button {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
}

/* Remove all borders and pseudo-elements from cart drawer quantity inputs */
.cart-drawer .cart-quantity,
.cart-drawer quantity-input .quantity {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.cart-drawer .cart-quantity:before,
.cart-drawer .cart-quantity:after,
.cart-drawer quantity-input .quantity:before,
.cart-drawer quantity-input .quantity:after {
  display: none !important;
  border: none !important;
  box-shadow: none !important;
}

.cart-drawer .quantity__input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* Hide all loading spinners in cart drawer */
.cart-drawer .loading__spinner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Ensure prices remain visible during cart updates */
.cart-drawer .cart-item__price-wrapper,
.cart-drawer .cart-item__price-wrapper *,
.cart-drawer .price {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Re-enable interactions inside the cart drawer while updating
   The global rule `.cart__items--disabled { pointer-events: none; }` blocks all taps,
   which makes plus/minus feel broken on mobile. Scoped override for the drawer only. */
cart-drawer .cart__items--disabled,
cart-drawer .drawer__contents.cart__items--disabled,
cart-drawer #CartDrawer-CartItems.cart__items--disabled {
  pointer-events: auto !important;
}

/* Style cart error text to match product form errors */
.cart-drawer .cart-item__error-text {
  color: #BB1A1A !important;
}

/* Style the main cart drawer error messages */
#CartDrawer-CartErrors {
  color: #BB1A1A !important;
  margin-left: 3px !important;
  margin-top: 6px !important;
}

.cart-drawer #CartDrawer-CartErrors {
  color: #BB1A1A !important;
  margin-left: 3px !important;
  margin-top: 6px !important;
}

/* Extra specificity for cart drawer errors */
cart-drawer #CartDrawer-CartErrors,
cart-drawer-items #CartDrawer-CartErrors,
.drawer__inner #CartDrawer-CartErrors {
  color: #BB1A1A !important;
  margin-left: 3px !important;
  margin-top: 6px !important;
}

/* Prevent layout shift during price updates */
.cart-drawer .cart-item--disabled .cart-item__price-wrapper,
.cart-drawer .cart__items--disabled .cart-item__price-wrapper {
  visibility: visible !important;
  opacity: 1 !important;
}