/* Oculta flechas nativas del <input type="number"> */
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.quantity input[type="number"] { -moz-appearance: textfield; }

/* Contenedor */
.woocommerce div.quantity,
.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Botones – y + */
.qty-btn {
  width: 38px; height: 38px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 6px;
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: box-shadow .15s, transform .05s;
  user-select: none;
}
.qty-btn:hover { box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.qty-btn:active { transform: translateY(1px); }

/* Input central */
.quantity .qty {
  width: 56px; height: 38px;
  text-align: center;
  border: 1px solid #d9d9d900!important;
  background: #fff;
  border-radius: 6px;
  font-weight: 600;
  padding: 0;
}

/* Estado deshabilitado */
.qty-btn[disabled] { opacity: .45; cursor: not-allowed; }