.cart-free-shipping {
  padding: 14px;
  margin-block: 0 18px;
  background: rgba(var(--color-text), 0.04);
  border: 1px solid rgba(var(--color-text), 0.08);
  border-radius: 8px;
}

.cart-free-shipping__label {
  margin-block-end: 10px;
}

.cart-free-shipping__track {
  height: 8px;
  overflow: hidden;
  background: rgba(var(--color-text), 0.12);
  border-radius: 999px;
}

.cart-free-shipping__bar {
  display: block;
  height: 100%;
  background: rgb(var(--color-button-background));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.cart-item__picture a {
  border-radius: 6px;
  outline-offset: 3px;
}

.cart-item__picture a:hover img,
.cart-item__picture a:focus-visible img {
  transform: scale(1.025);
}

.cart-item__picture img {
  transition: transform 0.2s ease;
}

.cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  outline-offset: 3px;
}

.cart-item__remove:hover,
.cart-item__remove:focus-visible {
  background: rgba(var(--color-text), 0.08);
}

.cart-item__disabled .cart-item__remove,
.cart-item__disabled theme-input-number {
  cursor: wait;
  opacity: 0.55;
}

.cart-drawer__close {
  border-radius: 50%;
  outline-offset: 3px;
}

.cart-drawer__close:hover,
.cart-drawer__close:focus-visible {
  background: rgba(var(--color-text), 0.08);
}

@media (max-width: 959px) {
  .cart-free-shipping {
    padding: 12px;
    margin-block-end: 14px;
  }
}
