/* Cart item controls (UpCart-style quantity + remove) */
.upcart-internal__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.arsenal-cart-item__row {
  align-items: flex-start;
}

.arsenal-cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.upcart-public-component-product-tile__quantity-selector,
.upcart-internal-component-product-tile__quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.upcart-public-component-product-tile__quantity-minus,
.upcart-public-component-product-tile__quantity-plus,
.upcart-internal-component-product-tile__quantity-minus,
.upcart-internal-component-product-tile__quantity-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1d1a1a;
  cursor: pointer;
}

.upcart-public-component-product-tile__quantity-minus:hover,
.upcart-public-component-product-tile__quantity-plus:hover,
.upcart-internal-component-product-tile__quantity-minus:hover,
.upcart-internal-component-product-tile__quantity-plus:hover {
  background: #f6f6f6;
}

.upcart-public-component-product-tile__quantity-minus:disabled,
.upcart-internal-component-product-tile__quantity-minus:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.upcart-public-component-product-tile__quantity-minus svg,
.upcart-public-component-product-tile__quantity-plus svg,
.upcart-internal-component-product-tile__quantity-minus svg,
.upcart-internal-component-product-tile__quantity-plus svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.upcart-public-component-product-tile__quantity-selector input,
.upcart-internal-component-product-tile__quantity-selector input {
  width: 2.5rem;
  height: 2.25rem;
  border: 0;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1;
  color: #1d1a1a;
  background: #fff;
  -moz-appearance: textfield;
}

.upcart-public-component-product-tile__quantity-selector input::-webkit-outer-spin-button,
.upcart-public-component-product-tile__quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.upcart-public-component-product-tile__remove-button,
.upcart-internal-component-product-tile__remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: #666;
  cursor: pointer;
}

.upcart-public-component-product-tile__remove-button:hover,
.upcart-internal-component-product-tile__remove-button:hover {
  background: #f6f6f6;
  color: #93040c;
}

.upcart-public-component-product-tile__remove-button svg,
.upcart-internal-component-product-tile__remove-button svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.arsenal-cart-item__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
