/* MSH Phase 2K.8 — live WooCommerce header cart indicator */
.msh-header-cart-live{
  position:relative!important;
  isolation:isolate;
}
.msh-header-cart-live .msh-header-cart-count{
  position:absolute;
  z-index:4;
  inset-block-start:-7px;
  inset-inline-end:-9px;
  display:grid;
  place-items:center;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border:2px solid #fbfaf7;
  border-radius:999px;
  background:#b68a3a;
  color:#fff;
  box-shadow:0 3px 10px rgba(23,63,42,.16);
  font-family:inherit;
  font-size:9.5px;
  font-weight:900;
  line-height:1;
  pointer-events:none;
}
.msh-header-cart-live .msh-header-cart-count[data-count="0"]{
  display:none;
}
.msh-header-cart-live.is-cart-updated .msh-header-cart-count{
  animation:msh-cart-badge-pop .42s ease-out;
}
@keyframes msh-cart-badge-pop{
  0%{transform:scale(.72)}
  55%{transform:scale(1.18)}
  100%{transform:scale(1)}
}
@media (prefers-reduced-motion:reduce){
  .msh-header-cart-live.is-cart-updated .msh-header-cart-count{animation:none}
}
