/* === Quantity compacto estilo captura 2 === */
form.cart .quantity.has-qty-buttons {
  display: inline-flex;
  align-items: center;
  background: #d9d9d9; /* fondo gris uniforme */
  border-radius: 4px;
  overflow: hidden;
  height: 48px; /* más compacto */
}

/* Botones - y + */
form.cart .quantity.has-qty-buttons .qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 48px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transition: background .2s ease;
}

form.cart .quantity.has-qty-buttons .qty-btn:hover {
  background: rgba(0,0,0,0.1);
}

/* Input central */
form.cart .quantity.has-qty-buttons input.qty {
  width: 33px !important;
  height: 48px;
  padding: 0px !important;
  border: none;
  background: #d9d9d9; /* mismo fondo que botones */
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  outline: none;
  margin: 0;
  -moz-appearance: textfield; /* Firefox */
}

/* Ocultar flechas nativas en Chrome/Safari/Edge */
form.cart .quantity.has-qty-buttons input.qty::-webkit-outer-spin-button,
form.cart .quantity.has-qty-buttons input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
