/* Cart Threshold Banner (drawer) — matches bottom bar vibe, adds working progress line */

.cart-threshold{
  display:block;
  padding: .9rem 1rem .8rem;
  margin: 0 0 0.75rem 0;
  border-radius: 8px;
  background: color-mix(in oklab, currentColor 6%, transparent);
}

.cart-threshold__text{
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: currentColor;
  margin-bottom: .55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-threshold__bar{
  height: 6px;
  width: 100%;
  background: color-mix(in oklab, currentColor 18%, transparent);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.cart-threshold__fill{
  height: 100%;
  width: 0;
  background: currentColor;
  border-radius: 999px;
  transition: width .25s ease;
  opacity: .95;
}

/* Compact on very small drawers */
@media (max-width: 480px){
  .cart-threshold{ padding: .8rem .85rem .7rem; }
  .cart-threshold__text{ font-size: .95rem; }
}
