/* === Satış Türü Birimi === */

/* Input: Journal3'ün width:100% override */
.stepper.qty-has-unit input.form-control {
  width: auto !important;
  flex: 0 1 auto !important;
  min-width: 20px;
  max-width: 36px;
  text-align: center;
}

/* Birim span: input ile + butonu ARASINDA konumlanır */
.stepper.qty-has-unit .qty-unit {
  order: 2;
  font-size: 0.8em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  padding: 0 3px 0 1px;
  color: inherit;
  pointer-events: none;
  user-select: none;
}

/* + butonu her zaman en sonda */
.stepper.qty-has-unit .fa-angle-up {
  order: 3;
}

/* Mobil */
@media (max-width: 767px) {
  .stepper.qty-has-unit input.form-control {
    max-width: 26px;
  }
  .stepper.qty-has-unit .qty-unit {
    font-size: 0.72em;
  }
}
