/* Cart item interaction states */
.cart-reference .cart-row {
  position: relative;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cart-reference .cart-row:hover {
  z-index: 1;
  background: #f8faf8;
  box-shadow: inset 3px 0 0 #52685c, 0 8px 20px rgba(25, 42, 32, .06);
  transform: translateY(-1px);
}

.cart-reference .cart-remove {
  top: 6px;
  left: 92px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #d6ded8;
  border-radius: 50%;
  background: #fff !important;
  color: #27372f !important;
  box-shadow: 0 3px 10px rgba(26, 42, 33, .13);
  font-size: 12px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cart-reference .cart-remove:hover {
  border-color: #b93838;
  background: #b93838 !important;
  color: #fff !important;
  box-shadow: 0 5px 14px rgba(185, 56, 56, .28);
  transform: scale(1.07);
}

.cart-reference .cart-remove:focus-visible,
.cart-reference .quantity-stepper button:focus-visible {
  outline: 2px solid #52685c;
  outline-offset: 3px;
}

.cart-reference .quantity-stepper button {
  background: #fff !important;
  color: #253b2f !important;
  transition: background .16s ease, color .16s ease;
}

.cart-reference .quantity-stepper button:hover {
  background: #253b2f !important;
  color: #fff !important;
}

@media (max-width: 560px) {
  .cart-reference .cart-remove { top: 6px; left: 56px; }
}
