.product-cart-control--selection.is-in-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 0;
  min-height: 44px;
  overflow: hidden;
  border: 2px solid var(--storefront-action-accent);
  border-radius: 999px;
  background: rgba(var(--storefront-action-accent-rgb), 0.05);
  box-shadow: 0 10px 20px rgba(var(--storefront-action-shadow-rgb), 0.12);
}

.product-cart-family {
  display: contents;
}

.product-cart-family[hidden] {
  display: none !important;
}

.product-cart-family__total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 10px;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.product-cart-family__total:hover {
  background: rgba(var(--storefront-action-accent-rgb), 0.14);
  text-decoration: none;
}

.product-cart-control--selection.is-in-cart .product-cart-control__add--compact {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(var(--storefront-action-shadow-rgb), 0.55);
  border-radius: 0;
  background: var(--storefront-action-accent);
  color: var(--storefront-action-accent-text);
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: none;
}

.product-cart-control--selection.is-in-cart .product-cart-control__add--compact:hover {
  background: var(--storefront-action-accent-hover);
  color: var(--storefront-action-accent-text);
}

.product-cart-family__total:focus-visible {
  outline: 3px solid var(--storefront-action-focus);
  outline-offset: -4px;
}

.product-cart-control--selection.is-in-cart .product-cart-control__add--compact:focus-visible {
  outline: 3px solid var(--storefront-action-accent-text);
  outline-offset: -4px;
}

.product-cart-control.is-cart-confirmed .product-cart-control__stepper,
.product-cart-control--selection.is-cart-confirmed.is-in-cart {
  animation: cart-control-confirmation 420ms ease-out;
}

@keyframes cart-control-confirmation {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 122, 75, 0.38);
  }
  55% {
    box-shadow: 0 0 0 5px rgba(8, 122, 75, 0.16);
  }
  100% {
    box-shadow: 0 10px 20px rgba(var(--storefront-action-shadow-rgb), 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-cart-control.is-cart-confirmed .product-cart-control__stepper,
  .product-cart-control--selection.is-cart-confirmed.is-in-cart {
    animation: none;
  }
}
