/** Shopify CDN: Minification failed

Line 57:33 Expected identifier but found whitespace
Line 57:43 Unexpected ";"

**/
.quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 12px;
}

.quantity-selector label {
  text-transform: lowercase;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons: remove border and background, keep cursor */
.quantity-button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: black;
}

/* Optional hover effect */
.quantity-button:hover {
  color: black; /* highlight on hover */
}

/* Quantity input: width fits the number, remove extra padding and border */
.quantity-input {
  border: none;
  background: none;
  text-align: center;
  width: 1ch; /* width of one character */
  font-size: 1rem;
  padding: 0;
  -moz-appearance: textfield;
}

/* Remove the spinner arrows in Firefox and Chrome */
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input::-moz-appearance: textfield;
